/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: Andrew Bennetts
  • Date: 2007-11-30 07:56:46 UTC
  • mto: (3053.3.2 integrate-1.0)
  • mto: This revision was merged to the branch mainline in revision 3059.
  • Revision ID: andrew.bennetts@canonical.com-20071130075646-6ego2oagvdkk4xtk
Fix typo in comment.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2953
2953
 
2954
2954
    def test_get_position(self):
2955
2955
        knit = self.make_knit_with_4_versions_2_dags()
2956
 
        # get_position returns (thunk_flay, index(can be None), start, end) for
 
2956
        # get_position returns (thunk_flag, index(can be None), start, end) for
2957
2957
        # _StreamAccess to use.
2958
2958
        self.assertGetPosition(knit, ['a'], 'a', (False, None, 0, 78))
2959
2959
        self.assertGetPosition(knit, ['a', 'c'], 'c', (False, None, 78, 156))