~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_ancestry.py

  • Committer: Vincent Ladeuil
  • Date: 2007-06-26 13:49:44 UTC
  • mto: (2581.1.1 cleanup-runbzr)
  • mto: This revision was merged to the branch mainline in revision 2588.
  • Revision ID: v.ladeuil+lp@free.fr-20070626134944-snlh5i0zsa30mysx
Enforce run_bzr(string) where possible.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
        open('A/foo', 'wb').write('1111\n')
30
30
        a_wt.add('foo')
31
31
        a_wt.commit('added foo',rev_id='A1')
32
 
        self.run_bzr(['branch', 'A', 'B'])
 
32
        self.run_bzr('branch A B')
33
33
        b_wt = WorkingTree.open('B')
34
34
        open('B/foo','wb').write('1111\n22\n')
35
35
        b_wt.commit('modified B/foo',rev_id='B1')