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

  • Committer: Robert Collins
  • Date: 2007-10-04 05:30:08 UTC
  • mfrom: (2881.1.1 knits)
  • mto: This revision was merged to the branch mainline in revision 2885.
  • Revision ID: robertc@robertcollins.net-20071004053008-aquje8fyntc8q69h
Fix knit test fallout from final readv api change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1403
1403
        # request a last-first iteration
1404
1404
        results = list(k1.iter_lines_added_or_present_in_versions(
1405
1405
            ['base2', 'base']))
1406
 
        self.assertEqual([('readv', 'id.knit', [(0, 87), (87, 89)], False)],
 
1406
        self.assertEqual(
 
1407
            [('readv', 'id.knit', [(0, 87), (87, 89)], False, None)],
1407
1408
            instrumented_t._activity)
1408
1409
        self.assertEqual(['text\n', 'text2\n'], results)
1409
1410