~vila/bzr/2.3-integration

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_repository/test_has_same_location.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-05-13 16:13:37 UTC
  • mfrom: (5642.1.6 2.3.3-dev)
  • Revision ID: pqm@pqm.ubuntu.com-20110513161337-a377gnro7njotyrs
(vila) Release 2.3.3 (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
        """Different repository objects for the same location are the same."""
65
65
        repo = self.make_repository('.')
66
66
        reopened_repo = repo.bzrdir.open_repository()
67
 
        self.failIf(
 
67
        self.assertFalse(
68
68
            repo is reopened_repo,
69
69
            "This test depends on reopened_repo being a different instance of "
70
70
            "the same repo.")