~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_interbranch/test_pull.py

  • Committer: Jelmer Vernooij
  • Date: 2011-10-17 08:45:09 UTC
  • mto: This revision was merged to the branch mainline in revision 6221.
  • Revision ID: jelmer@samba.org-20111017084509-nz4w2jntw6u19kwf
s/invisible/unreferenced.

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
        # It should not have updated the branch tip, but it should have fetched
113
113
        # the revision if the repository supports "invisible" revisions.
114
114
        self.assertEqual('rev2a', tree_a.branch.last_revision())
115
 
        if tree_a.branch.repository._format.supports_invisible_revisions:
 
115
        if tree_a.branch.repository._format.supports_unreferenced_revisions:
116
116
            self.assertTrue(tree_a.branch.repository.has_revision('rev2b'))
117
117
        tree_a.branch.pull(tree_b.branch, overwrite=True,
118
118
                           stop_revision='rev2b')