/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_add.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:
56
56
                          'adding dir',
57
57
                          'adding dir/sub.txt',
58
58
                          'adding top.txt'],
59
 
                          results)
 
59
                         results)
60
60
        out = self.run_bzr('add -v')[0]
61
61
        results = sorted(out.rstrip('\n').split('\n'))
62
62
        self.assertEqual(['ignored CVS matching "CVS"'],
63
 
                          results)
 
63
                         results)
64
64
 
65
65
    def test_add_quiet_is(self):
66
66
        """add -q does not print the names of added files."""
134
134
        # subdirectory
135
135
        self.run_bzr('add', working_dir='src')
136
136
        self.assertEqual('README\n',
137
 
                          self.run_bzr('unknowns', working_dir='src')[0])
 
137
                         self.run_bzr('unknowns', working_dir='src')[0])
138
138
        # reopen to see the new changes
139
139
        t = t.controldir.open_workingtree('src')
140
140
        versioned = [path for path, entry in t.iter_entries_by_dir()]