py3: use b'' in inline extension
# skip-blame b prefix
Differential Revision: https://phab.mercurial-scm.org/D2160
--- a/tests/test-largefiles-small-disk.t Sun Feb 11 16:29:35 2018 -0800
+++ b/tests/test-largefiles-small-disk.t Sun Feb 11 16:30:44 2018 -0800
@@ -11,7 +11,7 @@
> _origcopyfileobj = shutil.copyfileobj
> def copyfileobj(fsrc, fdst, length=16*1024):
> # allow journal files (used by transaction) to be written
- > if 'journal.' in fdst.name:
+ > if b'journal.' in fdst.name:
> return _origcopyfileobj(fsrc, fdst, length)
> fdst.write(fsrc.read(4))
> raise IOError(errno.ENOSPC, os.strerror(errno.ENOSPC))