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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 12:41:27 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521124127-iv8etg0vwymyai6y
s/bzr/brz/ in apport config.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Tests for the view command"""
18
18
 
19
 
from breezy.bzr import bzrdir
20
 
from breezy.tests import TestCaseWithTransport
21
 
from breezy.workingtree import WorkingTree
 
19
from brzlib import bzrdir
 
20
from brzlib.tests import TestCaseWithTransport
 
21
from brzlib.workingtree import WorkingTree
22
22
 
23
23
 
24
24
class TestViewUI(TestCaseWithTransport):
89
89
        # Check bad usage is reported to the user
90
90
        out, err = self.run_bzr('view --delete --switch x', retcode=3)
91
91
        self.assertContainsRe(err,
92
 
                              "Both --delete and --switch specified")
 
92
            "Both --delete and --switch specified")
93
93
        out, err = self.run_bzr('view --delete a b c', retcode=3)
94
94
        self.assertContainsRe(err, "Both --delete and a file list specified")
95
95