~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_smart_transport.py

  • Committer: Andrew Bennetts
  • Date: 2007-04-16 02:44:04 UTC
  • mto: This revision was merged to the branch mainline in revision 2420.
  • Revision ID: andrew.bennetts@canonical.com-20070416024404-3wwt2juvu7ai8nvn
Deal with review comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1483
1483
 
1484
1484
    def test_call_with_body_bytes_unicode_args(self):
1485
1485
        self.assertCallDoesNotBreakMedium('method', (u'args',), 'body')
 
1486
        self.assertCallDoesNotBreakMedium('method', ('arg1', u'arg2'), 'body')
1486
1487
 
1487
1488
    def test_call_with_body_bytes_unicode_body(self):
1488
1489
        self.assertCallDoesNotBreakMedium('method', ('args',), u'body')