From patchwork Tue Feb 13 02:47:46 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D2160: py3: use b'' in inline extension From: phabricator X-Patchwork-Id: 27762 Message-Id: To: mercurial-devel@mercurial-scm.org Date: Tue, 13 Feb 2018 02:47:46 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHGa42817fede27: py3: use b'' in inline extension (authored by indygreg, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D2160?vs=5461&id=5584 REVISION DETAIL https://phab.mercurial-scm.org/D2160 AFFECTED FILES tests/test-largefiles-small-disk.t CHANGE DETAILS To: indygreg, #hg-reviewers, pulkit Cc: pulkit, mercurial-devel diff --git a/tests/test-largefiles-small-disk.t b/tests/test-largefiles-small-disk.t --- a/tests/test-largefiles-small-disk.t +++ b/tests/test-largefiles-small-disk.t @@ -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))