##// END OF EJS Templates
tests: byteify an `error.Abort` message in test-wireproto.py...
Matt Harbison -
r53416:5cf81d8d default
parent child Browse files
Show More
@@ -66,7 +66,7 class clientpeer(wireprotov1peer.wirepee
66 elif isinstance(res, bytes):
66 elif isinstance(res, bytes):
67 return res
67 return res
68 else:
68 else:
69 raise error.Abort('dummy client does not support response type')
69 raise error.Abort(b'dummy client does not support response type')
70
70
71 def _callstream(self, cmd, **args):
71 def _callstream(self, cmd, **args):
72 return stringio(self._call(cmd, **args))
72 return stringio(self._call(cmd, **args))
General Comments 0
You need to be logged in to leave comments. Login now