/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_repository.py

  • Committer: Vincent Ladeuil
  • Date: 2011-01-27 14:27:18 UTC
  • mto: (5609.10.1 2.3b5-dev)
  • mto: This revision was merged to the branch mainline in revision 5635.
  • Revision ID: v.ladeuil+lp@free.fr-20110127142718-1ik7fyjfflgj91j5
Use self.get_transport instead of transport.get_transport where possible.

Show diffs side-by-side

added added

removed removed

Lines of Context:
604
604
class TestRepositoryConverter(TestCaseWithTransport):
605
605
 
606
606
    def test_convert_empty(self):
607
 
        t = transport.get_transport(self.get_url('.'))
 
607
        t = self.get_transport()
608
608
        t.mkdir('repository')
609
609
        repo_dir = bzrdir.BzrDirMetaFormat1().initialize('repository')
610
610
        repo = weaverepo.RepositoryFormat7().initialize(repo_dir)