Mercurial > hg
changeset 41737:cab32f08c994
tests: replace "naked except clause" to avoid check-code.py error
This is a part of preparation to apply checking with check-code.py on
code fragments embedded in *.t test scripts.
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Mon, 18 Feb 2019 00:27:25 +0900 |
parents | 9897e95b0b4a |
children | c70bdd222dcd |
files | tests/test-acl.t |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-acl.t Mon Feb 18 00:27:25 2019 +0900 +++ b/tests/test-acl.t Mon Feb 18 00:27:25 2019 +0900 @@ -38,7 +38,7 @@ > def fakegetusers(ui, group): > try: > return acl._getusersorig(ui, group) - > except: + > except BaseException: > return [b"fred", b"betty"] > acl._getusersorig = acl._getusers > acl._getusers = fakegetusers