]> granicus.if.org Git - python/commitdiff
This test was not expected in r84100 (not yet ready).
authorFlorent Xicluna <florent.xicluna@gmail.com>
Mon, 16 Aug 2010 19:33:48 +0000 (19:33 +0000)
committerFlorent Xicluna <florent.xicluna@gmail.com>
Mon, 16 Aug 2010 19:33:48 +0000 (19:33 +0000)
Lib/test/test_import.py

index 8912eba8a377aa00019af9b4d6bf3043c3182743..cd8b4a4f3b1c44d74e23b21451a0ac3da798e81d 100644 (file)
@@ -134,14 +134,6 @@ class ImportTests(unittest.TestCase):
             self.assertIs(orig_path, new_os.path)
             self.assertIsNot(orig_getenv, new_os.getenv)
 
-    def test_bug7732(self):
-        source = TESTFN + '.py'
-        os.mkdir(source)
-        try:
-            self.assertRaises(IOError, imp.find_module, TESTFN, ["."])
-        finally:
-            rmtree(source)
-
     def test_module_with_large_stack(self, module='longlist'):
         # Regression test for http://bugs.python.org/issue561858.
         filename = module + os.extsep + 'py'