~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2010-12-07 09:06:39 UTC
  • mto: This revision was merged to the branch mainline in revision 5567.
  • Revision ID: v.ladeuil+lp@free.fr-20101207090639-l77s4ix6oqqn76jx
Fix the remaining references to http://bazaar-vcs.org (except the explicitly historical ones).

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    def test_set_get_parent(self):
41
41
        """Set, re-get and reset the parent"""
42
42
        b = self.make_branch('subdir')
43
 
        url = 'http://bazaar-vcs.org/bzr/bzr.dev'
 
43
        url = 'http://example.com/bzr/bzr.dev'
44
44
        b.set_parent(url)
45
45
        self.assertEqual(url, b.get_parent())
46
46
        self.assertEqual(url, b._get_parent_location())