tests/test-keyword.t
changeset 40221 6d52c2275c30
parent 39951 a339b5e0d7c6
child 40319 eb131464c805
--- a/tests/test-keyword.t	Sat Oct 13 04:24:19 2018 +0300
+++ b/tests/test-keyword.t	Sat Oct 13 04:29:03 2018 +0300
@@ -214,10 +214,10 @@
 
 hg status of kw-ignored binary file starting with '\1\n'
 
-  >>> open("i", "wb").write("\1\nfoo") and None
+  >>> open("i", "wb").write(b"\1\nfoo") and None
   $ hg -q commit -Am metasep i
   $ hg status
-  >>> open("i", "wb").write("\1\nbar") and None
+  >>> open("i", "wb").write(b"\1\nbar") and None
   $ hg status
   M i
   $ hg -q commit -m "modify metasep" i
@@ -378,8 +378,8 @@
 record chunk
 
   >>> lines = open('a', 'rb').readlines()
-  >>> lines.insert(1, 'foo\n')
-  >>> lines.append('bar\n')
+  >>> lines.insert(1, b'foo\n')
+  >>> lines.append(b'bar\n')
   >>> open('a', 'wb').writelines(lines)
   $ hg record -d '10 1' -m rectest a<<EOF
   > y
@@ -942,7 +942,7 @@
 Imported patch should not be rejected
 
   >>> import re
-  >>> text = re.sub(r'(Id.*)', r'\1 rejecttest', open('a').read())
+  >>> text = re.sub(br'(Id.*)', br'\1 rejecttest', open('a', 'rb').read())
   >>> open('a', 'wb').write(text) and None
   $ hg --debug commit -m'rejects?' -d '3 0' -u 'User Name <user@example.com>'
   committing files: