Mercurial > hg
changeset 34282:3e92322d3b1f
tests: avoid repr in test-bundle2-format.t
We don't *really* need it here, and it was making Python 3 harder.
author | Augie Fackler <augie@google.com> |
---|---|
date | Mon, 18 Sep 2017 14:19:47 -0400 |
parents | c9eabc37bb98 |
children | f94442d46984 |
files | tests/test-bundle2-format.t |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-bundle2-format.t Mon Sep 18 14:04:05 2017 -0400 +++ b/tests/test-bundle2-format.t Mon Sep 18 14:19:47 2017 -0400 @@ -68,9 +68,9 @@ > else: > op.ui.write(b'debugreply: capabilities:\n') > for cap in sorted(op.reply.capabilities): - > op.ui.write(b'debugreply: %r\n' % cap) + > op.ui.write(b"debugreply: '%s'\n" % cap) > for val in op.reply.capabilities[cap]: - > op.ui.write(b'debugreply: %r\n' % val) + > op.ui.write(b"debugreply: '%s'\n" % val) > > @command(b'bundle2', > [(b'', b'param', [], b'stream level parameter'),