~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_dirstate.py

  • Committer: Vincent Ladeuil
  • Date: 2012-08-04 14:27:47 UTC
  • mto: This revision was merged to the branch mainline in revision 6553.
  • Revision ID: v.ladeuil+lp@free.fr-20120804142747-2t498paljijf7q7y
Remaining tests matching setup(self) that can be rewritten with super().

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