/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/tests/blackbox/test_shell_complete.py

  • Committer: Jelmer Vernooij
  • Date: 2019-05-29 03:22:34 UTC
  • mfrom: (7303 work)
  • mto: This revision was merged to the branch mainline in revision 7306.
  • Revision ID: jelmer@jelmer.uk-20190529032234-mt3fuws8gq03tapi
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
    def test_specific_command_missing(self):
33
33
        out, err = self.run_bzr('shell-complete missing-command', retcode=3)
34
 
        self.assertEqual('brz: ERROR: unknown command "missing-command"\n', err)
 
34
        self.assertEqual(
 
35
            'brz: ERROR: unknown command "missing-command"\n', err)
35
36
        self.assertEqual('', out)
36
37
 
37
38
    def test_specific_command(self):