~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_branch.py

  • Committer: Jelmer Vernooij
  • Date: 2010-03-11 13:14:37 UTC
  • mto: This revision was merged to the branch mainline in revision 5085.
  • Revision ID: jelmer@samba.org-20100311131437-446uk7f1bc07z11m
Fix tests - missing argument.

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
    def is_supported(self):
133
133
        return False
134
134
 
135
 
    def open(self, transport, _found=False, ignore_fallbacks=False):
 
135
    def open(self, transport, name=None, _found=False, ignore_fallbacks=False):
136
136
        return "opened branch."
137
137
 
138
138