~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: John Arbash Meinel
  • Date: 2006-08-14 16:16:53 UTC
  • mto: (1946.2.6 reduce-knit-churn)
  • mto: This revision was merged to the branch mainline in revision 1919.
  • Revision ID: john@arbash-meinel.com-20060814161653-54cdcdadcd4e9003
Remove bogus entry from BRANCH.TODO

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 Canonical Ltd
 
1
# Copyright (C) 2005 by Canonical Ltd
2
2
# -*- coding: utf-8 -*-
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
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 using "merge" and then "push".\n'))
 
74
                    'Try a merge then push with overwrite.\n'))
75
75
        self.assertEquals(abspath(branch_a.get_push_location()),
76
76
                          abspath(branch_b.bzrdir.root_transport.base))
77
77