~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_merge.py

  • Committer: Martin Pool
  • Date: 2007-06-26 08:02:36 UTC
  • mto: This revision was merged to the branch mainline in revision 2555.
  • Revision ID: mbp@sourcefrog.net-20070626080236-14ihgomtffc9tezj
Cleanup old variations on run_bzr in the test suite

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
        wt1.add('bar')
78
78
        wt1.commit('add foobar')
79
79
        os.chdir('branch2')
80
 
        self.run_bzr('merge', '../branch1/baz', retcode=3)
81
 
        self.run_bzr('merge', '../branch1/foo')
 
80
        self.run_bzr('merge ../branch1/baz', retcode=3)
 
81
        self.run_bzr('merge ../branch1/foo')
82
82
        self.failUnlessExists('foo')
83
83
        self.failIfExists('bar')
84
84
        wt2 = WorkingTree.open('.') # opens branch2