~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testchangeset.py

  • Committer: Aaron Bentley
  • Date: 2005-07-26 14:25:19 UTC
  • mto: (1185.82.1 bzr-w-changeset)
  • mto: This revision was merged to the branch mainline in revision 1738.
  • Revision ID: abentley@panoramicfeedback.com-20050726142519-9bbc4f57e193ee49
Updated to match API change

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
        parent_id = self.parent_id(file_id)
55
55
        text_sha_1, text_size = self.contents_stats(file_id)
56
56
        ie = InventoryEntry(file_id, name, kind, parent_id)
57
 
        ie.text_sha_1 = text_sha_1
 
57
        ie.text_sha1 = text_sha_1
58
58
        ie.text_size = text_size
59
59
        return ie
60
60