~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_whitebox.py

Merge from mbp.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
    def test_no_changes(self):
12
12
        from bzrlib.errors import PointlessCommit
13
13
        
14
 
        b = Branch.initialize('.')
 
14
        b = Branch.initialize(u'.')
15
15
 
16
16
        self.build_tree(['hello.txt'])
17
17
 
41
41
 
42
42
    def test_rename_dirs(self):
43
43
        """Test renaming directories and the files within them."""
44
 
        b = Branch.initialize('.')
 
44
        b = Branch.initialize(u'.')
45
45
        self.build_tree(['dir/', 'dir/sub/', 'dir/sub/file'])
46
46
        b.working_tree().add(['dir', 'dir/sub', 'dir/sub/file'])
47
47