Submitter | Yuya Nishihara |
---|---|
Date | July 9, 2018, 1:24 p.m. |
Message ID | <9a7d1a087b1807a06b2e.1531142676@mimosa> |
Download | mbox | patch |
Permalink | /patch/32704/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/tests/test-bundle2-format.t b/tests/test-bundle2-format.t --- a/tests/test-bundle2-format.t +++ b/tests/test-bundle2-format.t @@ -184,9 +184,9 @@ Create an extension to test bundle2 API > 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()