~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transform.py

UsedĀ appropriateĀ control_files

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
class TestTreeTransform(TestCaseInTempDir):
28
28
    def setUp(self):
29
29
        super(TestTreeTransform, self).setUp()
30
 
        os.mkdir('branchdir')
31
 
        self.branch = Branch.initialize('branchdir')
 
30
        self.branch = Branch.initialize('.')
32
31
        self.wt = self.branch.working_tree()
 
32
        os.chdir('..')
33
33
 
34
34
    def get_transform(self):
35
35
        transform = TreeTransform(self.wt)