/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

  • Committer: Jelmer Vernooij
  • Date: 2011-05-18 10:24:05 UTC
  • mfrom: (5889 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5903.
  • Revision ID: jelmer@samba.org-20110518102405-isallt5uet1afh4f
merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
461
461
    def test_lossy_push_raises_same_vcs(self):
462
462
        target = self.make_branch('target')
463
463
        source = self.make_branch('source')
464
 
        self.assertRaises(errors.LossyPushToSameVCS, source.lossy_push, target)
 
464
        self.assertRaises(errors.LossyPushToSameVCS, source.push, target, lossy=True)