~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_revision_info.py

  • Committer: Aaron Bentley
  • Date: 2005-12-25 00:38:48 UTC
  • mto: (1185.67.11 bzr.revision-storage)
  • mto: This revision was merged to the branch mainline in revision 1550.
  • Revision ID: aaron.bentley@utoronto.ca-20051225003848-111ac71170cb2605
Renamed Branch.storage to Branch.repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
        b.working_tree().commit('Commit three', rev_id='a@r-0-3')
93
93
 
94
94
        revs = {
95
 
            1:b.storage.get_revision_xml('a@r-0-1'),
96
 
            2:b.storage.get_revision_xml('a@r-0-2'),
97
 
            3:b.storage.get_revision_xml('a@r-0-3'),
 
95
            1:b.repository.get_revision_xml('a@r-0-1'),
 
96
            2:b.repository.get_revision_xml('a@r-0-2'),
 
97
            3:b.repository.get_revision_xml('a@r-0-3'),
98
98
        }
99
99
 
100
100
        self.check_output(revs[1], 'cat-revision', 'a@r-0-1')