# HG changeset patch # User Gregory Szorc # Date 1518395444 28800 # Node ID a42817fede2795cf22056ac451749196b9f039db # Parent 6426878f7f0f02fbf729c7312ad04a9a82dcfbf8 py3: use b'' in inline extension # skip-blame b prefix Differential Revision: https://phab.mercurial-scm.org/D2160 diff -r 6426878f7f0f -r a42817fede27 tests/test-largefiles-small-disk.t --- 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))