/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_workingtree.py

(mbp) stop using failIf, failUnless, etc (Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
            format.initialize(dir)
157
157
            t = transport.get_transport(url)
158
158
            found_format = workingtree.WorkingTreeFormat.find_format(dir)
159
 
            self.failUnless(isinstance(found_format, format.__class__))
 
159
            self.assertIsInstance(found_format, format.__class__)
160
160
        check_format(workingtree.WorkingTreeFormat3(), "bar")
161
161
 
162
162
    def test_find_format_no_tree(self):