/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_smart.py

  • Committer: Martin Pool
  • Date: 2008-05-27 01:05:57 UTC
  • mfrom: (3452 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3453.
  • Revision ID: mbp@sourcefrog.net-20080527010557-vqz3rab2v816oybw
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
392
392
        backing = self.get_transport()
393
393
        request = smart.branch.SmartServerBranchGetConfigFile(backing)
394
394
        branch = self.make_branch('.')
395
 
        branch.control_files.put_utf8('branch.conf', 'foo bar baz')
 
395
        branch._transport.put_bytes('branch.conf', 'foo bar baz')
396
396
        self.assertEqual(SmartServerResponse(('ok', ), 'foo bar baz'),
397
397
            request.execute(''))
398
398