~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bundle.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-01-31 12:28:55 UTC
  • mfrom: (4988.3.2 cleanup-repo)
  • Revision ID: pqm@pqm.ubuntu.com-20100131122855-lmwqnehfxn3wkm94
(Jelmer) Remove Repository.get_inventory_sha1().

Show diffs side-by-side

added added

removed removed

Lines of Context:
1065
1065
 
1066
1066
    def test_inv_hash_across_serializers(self):
1067
1067
        repo = self.make_repo_with_installed_revisions()
1068
 
        recorded_inv_sha1 = repo.get_inventory_sha1('rev2')
 
1068
        recorded_inv_sha1 = repo.get_revision('rev2').inventory_sha1
1069
1069
        xml = repo.get_inventory_xml('rev2')
1070
1070
        self.assertEqual(osutils.sha_string(xml), recorded_inv_sha1)
1071
1071