commit | 07fdcfd6c96f972836574d65fbc039891e664755 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Sat Oct 28 21:56:49 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Sat Oct 28 21:56:49 2006 +0000 |
tree | 1825aba41f92cebc1c0fc7a8a089a8405383ff00 | |
parent | ab772274700baf17e708e8c8d82c78efbaa038cd [diff] |
Fix test_modulefinder so it doesn't fail when run after test_distutils.
diff --git a/Lib/test/test_modulefinder.py b/Lib/test/test_modulefinder.py index 36d81ca..18cc322 100644 --- a/Lib/test/test_modulefinder.py +++ b/Lib/test/test_modulefinder.py
@@ -257,6 +257,7 @@ self._do_test(relative_import_test_2) def test_main(): + distutils.log.set_threshold(distutils.log.WARN) test_support.run_unittest(ModuleFinderTest) if __name__ == "__main__":