Submitter | phabricator |
---|---|
Date | Dec. 12, 2017, 11:26 p.m. |
Message ID | <differential-rev-PHID-DREV-f6vixtefpfom4gz7ic6l-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/26254/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/tests/test-revlog-mmapindex.t b/tests/test-revlog-mmapindex.t --- a/tests/test-revlog-mmapindex.t +++ b/tests/test-revlog-mmapindex.t @@ -6,12 +6,13 @@ > > from mercurial import ( > extensions, + > pycompat, > util, > ) > > def extsetup(ui): > def mmapread(orig, fp): - > ui.write("mmapping %s\n" % fp.name) + > ui.write(b"mmapping %s\n" % pycompat.bytestr(fp.name)) > ui.flush() > return orig(fp) >