~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-10-10 02:18:00 UTC
  • mfrom: (2063.2.1 push-to-diverged)
  • Revision ID: pqm@pqm.ubuntu.com-20061010021800-16eea9239dba3bbc
(Matthieu Moy) cleanup message when pushing to diverged branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
        out = self.run_bzr('push', '../branch_b', retcode=3)
72
72
        self.assertEquals(out,
73
73
                ('','bzr: ERROR: These branches have diverged.  '
74
 
                    'Try a merge then push with overwrite.\n'))
 
74
                    'Try using "merge" and then "push".\n'))
75
75
        self.assertEquals(abspath(branch_a.get_push_location()),
76
76
                          abspath(branch_b.bzrdir.root_transport.base))
77
77