~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: Andrew Bennetts
  • Date: 2009-08-05 02:12:22 UTC
  • mto: This revision was merged to the branch mainline in revision 4608.
  • Revision ID: andrew.bennetts@canonical.com-20090805021222-t5y7crtvdv4tczn2
Undo changes that aren't needed anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2247
2247
        b = self.make_branch(relpath, format=format)
2248
2248
        return memorytree.MemoryTree.create_on_branch(b)
2249
2249
 
2250
 
    def make_branch_builder(self, relpath, format=None, automatic_root=False):
 
2250
    def make_branch_builder(self, relpath, format=None):
2251
2251
        branch = self.make_branch(relpath, format=format)
2252
 
        return branchbuilder.BranchBuilder(
2253
 
            branch=branch, automatic_root=automatic_root)
 
2252
        return branchbuilder.BranchBuilder(branch=branch)
2254
2253
 
2255
2254
    def overrideEnvironmentForTesting(self):
2256
2255
        os.environ['HOME'] = self.test_home_dir