~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Samuel Bronson
  • Date: 2012-08-30 20:36:18 UTC
  • mto: (6015.57.3 2.4)
  • mto: This revision was merged to the branch mainline in revision 6558.
  • Revision ID: naesten@gmail.com-20120830203618-y2dzw91nqpvpgxvx
Update INSTALL for switch to Python 2.6 and up.

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
        if repo._format == other_repo._format:
116
116
            # We're testing the default format!  So we have to use a non-default
117
117
            # format for other_repo.
118
 
            transport.get_transport_from_url(
119
 
                self.get_vfs_only_url()).delete_tree('other')
 
118
            transport.get_transport(self.get_vfs_only_url()
 
119
                                    ).delete_tree('other')
120
120
            other_repo = self.make_repository('other', format='knit')
121
121
        # Make sure the other_repo is not a RemoteRepository.
122
122
        other_bzrdir = bzrdir.BzrDir.open(self.get_vfs_only_url('other'))