/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 breezy/git/tests/test_git_remote_helper.py

  • Committer: Jelmer Vernooij
  • Date: 2020-06-19 21:26:53 UTC
  • mfrom: (7490.40.19 work)
  • mto: This revision was merged to the branch mainline in revision 7516.
  • Revision ID: jelmer@jelmer.uk-20200619212653-7j6rgywzczhc8cmj
Merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
        (out, err) = p.communicate(b'capabilities\n')
115
115
        lines = out.splitlines()
116
116
        self.assertIn(b'push', lines, "no 'push' in %r, error: %r" % (lines, err))
117
 
        self.assertEqual(b'', err)
 
117
        self.assertEqual(
 
118
            b"git-remote-bzr is experimental and has not been optimized "
 
119
            b"for performance. Use 'brz fast-export' and 'git fast-import' "
 
120
            b"for large repositories.\n", err)
118
121
 
119
122
 
120
123
class RemoteHelperTests(TestCaseWithTransport):