/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: Jelmer Vernooij
  • Date: 2017-11-12 17:14:00 UTC
  • mfrom: (6809.1.1 ws_comma)
  • Revision ID: jelmer@jelmer.uk-20171112171400-x19h7e3vw8t0u3w4
Merge lp:~gz/brz/ws_comma

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')],