# HG changeset patch # User Yuya Nishihara # Date 1531046051 -32400 # Node ID 980aee54fd709cc2877c3f7fe4517e1579aa676e # Parent fe81af15675aa29940b758e5538cb930054fb2c5 py3: byte-stringify literals in extension in test-bundle2-format.t # skip-blame just some b'' diff -r fe81af15675a -r 980aee54fd70 tests/test-bundle2-format.t --- a/tests/test-bundle2-format.t Sun Jul 08 19:32:39 2018 +0900 +++ b/tests/test-bundle2-format.t Sun Jul 08 19:34:11 2018 +0900 @@ -184,9 +184,9 @@ > op = bundle2.processbundle(repo, unbundler, lambda: tr) > tr.close() > except error.BundleValueError as exc: - > raise error.Abort('missing support for %s' % exc) + > raise error.Abort(b'missing support for %s' % exc) > except error.PushRaced as exc: - > raise error.Abort('push race: %s' % exc) + > raise error.Abort(b'push race: %s' % exc) > finally: > if tr is not None: > tr.release()