~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_fetch.py

  • Committer: Vincent Ladeuil
  • Date: 2007-10-23 07:15:13 UTC
  • mfrom: (2926 +trunk)
  • mto: (2961.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 2962.
  • Revision ID: v.ladeuil+lp@free.fr-20071023071513-elryt6g2at34d2ur
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
268
268
        branch = wt.branch
269
269
        wt.add(["file"], ["id"])
270
270
        wt.commit("added file")
271
 
        print >>open("source/file", 'w'), "blah"
 
271
        open("source/file", 'w').write("blah\n")
272
272
        wt.commit("changed file")
273
273
        target = BzrDir.create_branch_and_repo("target/")
274
274
        source = Branch.open(self.get_readonly_url("source/"))