~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-07-25 14:01:28 UTC
  • mfrom: (6039.1.9 transport-from-url)
  • Revision ID: pqm@pqm.ubuntu.com-20110725140128-croovh96z0rs57yy
(jelmer) Add get_transport_from_url and get_transport_from_path functions.
 (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
673
673
            return
674
674
        # supported formats must be able to init and open
675
675
        t = self.get_transport()
676
 
        readonly_t = transport.get_transport(self.get_readonly_url())
 
676
        readonly_t = transport.get_transport_from_url(self.get_readonly_url())
677
677
        made_branch = self.make_branch('.')
678
678
        self.assertIsInstance(made_branch, _mod_branch.Branch)
679
679