/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/per_workingtree/test_smart_add.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-16 12:20:11 UTC
  • mto: This revision was merged to the branch mainline in revision 7178.
  • Revision ID: jelmer@jelmer.uk-20181116122011-40m8t96o0bcy6e16
Fix E127

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
        with tree.lock_read():
59
59
            files = [(path, status, kind)
60
60
                     for path, status, kind, file_id, parent_id
61
 
                      in tree.list_files(include_root=True)]
 
61
                     in tree.list_files(include_root=True)]
62
62
        self.assertEqual([('', 'V', 'directory'), ('a', 'V', 'file')],
63
63
                         files)
64
64
        self.assertEqual([(tree, 'a', 'file')], action.adds)