~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/workingtree_implementations/test_inv.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-03-26 07:30:03 UTC
  • mfrom: (2375.1.7 remove-branch-transaction)
  • Revision ID: pqm@pqm.ubuntu.com-20070326073003-37941d0fa5a5a6c4
(Andrew Bennetts) Replace Branch.get_transaction and associated infrastructure with simpler caching of revision history.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
        # this should be a separate test probably, but lets check it once..
79
79
        lines = self.branch.repository.weave_store.get_weave(
80
80
            'fileid', 
81
 
            self.branch.get_transaction()).get_lines('2')
 
81
            self.branch.repository.get_transaction()).get_lines('2')
82
82
        self.assertEqual(lines, ['contents of subdir/file\n'])
83
83
 
84
84
    def test_snapshot_unchanged(self):