~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_repository/test_fetch.py

  • Committer: Andrew Bennetts
  • Date: 2009-08-05 02:12:22 UTC
  • mto: This revision was merged to the branch mainline in revision 4608.
  • Revision ID: andrew.bennetts@canonical.com-20090805021222-t5y7crtvdv4tczn2
Undo changes that aren't needed anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
302
302
        repo.fetch(tree.branch.repository)
303
303
 
304
304
    def make_simple_branch_with_ghost(self):
305
 
        builder = self.make_branch_builder('source', automatic_root=True)
 
305
        builder = self.make_branch_builder('source')
306
306
        builder.start_series()
307
307
        builder.build_snapshot('A-id', None, [
 
308
            ('add', ('', 'root-id', 'directory', None)),
308
309
            ('add', ('file', 'file-id', 'file', 'content\n'))])
309
310
        builder.build_snapshot('B-id', ['A-id', 'ghost-id'], [])
310
311
        builder.finish_series()