/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_cp.py

  • Committer: Jelmer Vernooij
  • Date: 2018-07-15 18:45:17 UTC
  • mto: (7045.3.3 python3-r)
  • mto: This revision was merged to the branch mainline in revision 7047.
  • Revision ID: jelmer@jelmer.uk-20180715184517-1ipa50jg36zvglc5
Fix another 300 tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    def test_cp_unversioned(self):
40
40
        self.build_tree(['unversioned.txt'])
41
41
        self.run_bzr_error(
42
 
            [b"^brz: ERROR: Could not copy .*unversioned.txt => .*elsewhere."
43
 
             b" .*unversioned.txt is not versioned\\.$"],
 
42
            ["^brz: ERROR: Could not copy .*unversioned.txt => .*elsewhere."
 
43
             " .*unversioned.txt is not versioned\\.$"],
44
44
            'cp unversioned.txt elsewhere')
45
45
 
46
46
    def test_cp_nonexisting(self):
47
47
        self.run_bzr_error(
48
 
            [b"^brz: ERROR: Could not copy .*doesnotexist => .*somewhereelse."
49
 
             b" .*doesnotexist is not versioned\\.$"],
 
48
            ["^brz: ERROR: Could not copy .*doesnotexist => .*somewhereelse."
 
49
             " .*doesnotexist is not versioned\\.$"],
50
50
            'cp doesnotexist somewhereelse')
51
51
 
52
52
    def test_cp_unqualified(self):