~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/blackbox.py

[merge] from robert

Show diffs side-by-side

added added

removed removed

Lines of Context:
614
614
        runbzr("add sub1")
615
615
        runbzr("rename sub1 sub2")
616
616
        runbzr("move hello.txt sub2")
617
 
        assert capture("relpath sub2/hello.txt") == os.path.join("sub2", "hello.txt\n")
 
617
        self.assertEqual(capture("relpath sub2/hello.txt"),
 
618
                         os.path.join("sub2", "hello.txt\n"))
618
619
 
619
620
        assert exists("sub2")
620
621
        assert exists("sub2/hello.txt")