~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_dirstate.py

(vila) Calling super() instead of mentioning the base class in setUp avoid
 mistakes. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
    _native_to_unicode = None # Not used yet
65
65
 
66
66
    def setUp(self):
67
 
        tests.TestCaseWithTransport.setUp(self)
68
 
 
 
67
        super(TestCaseWithDirState, self).setUp()
69
68
        self.overrideAttr(osutils,
70
69
                          '_selected_dir_reader', self._dir_reader_class())
71
70