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

  • Committer: Martin
  • Date: 2017-11-12 13:53:51 UTC
  • mto: This revision was merged to the branch mainline in revision 6810.
  • Revision ID: gzlist@googlemail.com-20171112135351-uyr1ncw7visg62c2
Apply 2to3 ws_comma fixer

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
        class MockModule(object):
140
140
            def get_test_permutations(self):
141
141
                return sample_permutation
142
 
        sample_permutation = [(1,2), (3,4)]
 
142
        sample_permutation = [(1, 2), (3, 4)]
143
143
        from .per_transport import get_transport_test_permutations
144
144
        self.assertEqual(sample_permutation,
145
145
                         get_transport_test_permutations(MockModule()))
3698
3698
            def setUp(self):
3699
3699
                super(Test, self).setUp()
3700
3700
                self.hooks = hooks.Hooks()
3701
 
                self.hooks.add_hook('myhook', 'Foo bar blah', (2,4))
 
3701
                self.hooks.add_hook('myhook', 'Foo bar blah', (2, 4))
3702
3702
                self.install_counter_hook(self.hooks, 'myhook')
3703
3703
 
3704
3704
            def no_hook(self):