~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_read_bundle.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-07-12 09:49:37 UTC
  • mfrom: (2598.5.9 nullrevision)
  • Revision ID: pqm@pqm.ubuntu.com-20070712094937-rw5qbi81enh0pvhw
Make most functions prefer NULL_REVISION

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
 
52
52
        out = cStringIO.StringIO()
53
53
        rev_ids = write_bundle(wt.branch.repository,
54
 
                               wt.get_parent_ids()[0], None, out)
 
54
                               wt.get_parent_ids()[0], 'null:', out)
55
55
        out.seek(0)
56
56
        if self.get_transport().is_readonly():
57
57
            f = open('test_bundle', 'wb')