/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 bzrlib/tests/test_commit.py

  • Committer: Jelmer Vernooij
  • Date: 2017-02-05 16:49:28 UTC
  • mto: (6621.2.1 py3)
  • mto: This revision was merged to the branch mainline in revision 6624.
  • Revision ID: jelmer@jelmer.uk-20170205164928-nmcybzip5kdhiwon
Use 2to3 set_literal fixer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
589
589
        this_tree.merge_from_branch(other_tree.branch)
590
590
        reporter = CapturingReporter()
591
591
        this_tree.commit('do the commit', reporter=reporter)
592
 
        expected = set([
 
592
        expected = {
593
593
            ('change', 'modified', 'filetomodify'),
594
594
            ('change', 'added', 'newdir'),
595
595
            ('change', 'added', 'newfile'),
599
599
            ('renamed', 'renamed', 'filetoreparent', 'renameddir/reparentedfile'),
600
600
            ('deleted', 'dirtoremove'),
601
601
            ('deleted', 'filetoremove'),
602
 
            ])
 
602
            }
603
603
        result = set(reporter.calls)
604
604
        missing = expected - result
605
605
        new = result - expected