/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_bisect_multi.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:
84
84
        # steps in the worst case there.
85
85
        self.assertEqual([],
86
86
            list(bisect_multi_bytes(
87
 
                missing_first_content,268435456 - 1 , ['foo', 'bar'])))
 
87
                missing_first_content, 268435456 - 1, ['foo', 'bar'])))
88
88
        self.assertEqual([
89
89
            [(134217727, 'foo'), (134217727, 'bar')],
90
90
            [(67108864, 'foo'), (67108864, 'bar')],
177
177
        # assertion.
178
178
        self.assertEqual([],
179
179
            list(bisect_multi_bytes(
180
 
                missing_last_content,268435456 - 1 , ['foo', 'bar'])))
 
180
                missing_last_content, 268435456 - 1, ['foo', 'bar'])))
181
181
        self.assertEqual([
182
182
            [(134217727, 'foo'), (134217727, 'bar')],
183
183
            [(201326590, 'foo'), (201326590, 'bar')],