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

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-11-16 18:59:44 UTC
  • mfrom: (7143.15.15 more-cleanups)
  • Revision ID: breezy.the.bot@gmail.com-20181116185944-biefv1sub37qfybm
Sprinkle some PEP8iness.

Merged from https://code.launchpad.net/~jelmer/brz/more-cleanups/+merge/358611

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
from breezy.bzr.knitpack_repo import RepositoryFormatKnitPack4
21
21
 
22
22
 
23
 
 
24
23
class TestSplit(tests.TestCaseWithTransport):
25
24
 
26
25
    def test_split(self):
29
28
        wt.add(['b', 'b/c'])
30
29
        wt.commit('rev1')
31
30
        self.run_bzr('split a/b')
32
 
        self.run_bzr_error(('.* is not versioned',), 'split q', working_dir='a')
 
31
        self.run_bzr_error(('.* is not versioned',),
 
32
                           'split q', working_dir='a')
33
33
 
34
34
    def test_split_repo_failure(self):
35
35
        repo = self.make_repository('branch', shared=True, format='knit')