~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/repository_implementations/test_repository.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-26 21:33:20 UTC
  • mfrom: (3015.2.15 pack.read-locks)
  • Revision ID: pqm@pqm.ubuntu.com-20071126213320-adxxra3gsie5inhw
(robertc) Many fixes to support packs on the smart server and as the
        default format. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
853
853
        # now access over vfat; should be safe
854
854
        branch = bzrdir.BzrDir.open('vfat+' + self.get_url('repo')).open_branch()
855
855
        revtree = branch.repository.revision_tree(REV_ID)
 
856
        revtree.lock_read()
 
857
        self.addCleanup(revtree.unlock)
856
858
        contents = revtree.get_file_text(FOO_ID)
857
859
        self.assertEqual(contents, 'contents of repo/foo\n')
858
860