py3: add missing b prefixes in test-acl.t
authorAugie Fackler <augie@google.com>
Thu, 24 Jan 2019 11:39:38 -0500
changeset 41358 671d5a712237
parent 41357 b785ce41b6a1
child 41359 5361f9ed8a30
py3: add missing b prefixes in test-acl.t There's one failure left in the test, which looks like a real problem around executing hooks. I have not investigated further. # skip-blame as just b'' prefixes Differential Revision: https://phab.mercurial-scm.org/D5677
tests/test-acl.t
--- a/tests/test-acl.t	Thu Jan 24 11:00:32 2019 -0500
+++ b/tests/test-acl.t	Thu Jan 24 11:39:38 2019 -0500
@@ -39,7 +39,7 @@
   >     try:
   >         return acl._getusersorig(ui, group)
   >     except:
-  >         return ["fred", "betty"]
+  >         return [b"fred", b"betty"]
   > acl._getusersorig = acl._getusers
   > acl._getusers = fakegetusers
   > EOF