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

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-11-16 19:38:57 UTC
  • mfrom: (7143.16.21 even-more-cleanups)
  • Revision ID: breezy.the.bot@gmail.com-20181116193857-bs5oma2655sp55qu
Fix another dozen flake8 errors.

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
595
595
 
596
596
        for path, status, kind, fileid, entry in base_files:
597
597
            # Check that the meta information is the same
598
 
            self.assertEqual(base_tree.get_file_size(path),
599
 
                    to_tree.get_file_size(to_tree.id2path(fileid)))
600
 
            self.assertEqual(base_tree.get_file_sha1(path),
601
 
                    to_tree.get_file_sha1(to_tree.id2path(fileid)))
 
598
            self.assertEqual(
 
599
                base_tree.get_file_size(path),
 
600
                to_tree.get_file_size(to_tree.id2path(fileid)))
 
601
            self.assertEqual(
 
602
                base_tree.get_file_sha1(path),
 
603
                to_tree.get_file_sha1(to_tree.id2path(fileid)))
602
604
            # Check that the contents are the same
603
605
            # This is pretty expensive
604
606
            # self.assertEqual(base_tree.get_file(fileid).read(),