#2767: don't clear globs in run() call, since they could be needed in tearDown,

which clears them at the end.
This commit is contained in:
Georg Brandl 2008-05-12 17:04:10 +00:00
parent 45141d0057
commit 1b4758d276
1 changed files with 1 additions and 1 deletions

View File

@ -2211,7 +2211,7 @@ class DocTestCase(unittest.TestCase):
self.setUp()
runner = DebugRunner(optionflags=self._dt_optionflags,
checker=self._dt_checker, verbose=False)
runner.run(self._dt_test)
runner.run(self._dt_test, clear_globs=False)
self.tearDown()
def id(self):