diff options
Diffstat (limited to 'Lib/test/test_import.py')
-rw-r--r-- | Lib/test/test_import.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index b037456..462e266 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -18,7 +18,7 @@ def remove_files(name): class ImportTest(unittest.TestCase): - + def testCaseSensitivity(self): # Brief digression to test that import is case-sensitive: if we got this # far, we know for sure that "random" exists. @@ -56,7 +56,7 @@ class ImportTest(unittest.TestCase): mod = __import__(TESTFN) except ImportError, err: self.fail("import from %s failed: %s" % (ext, err)) - + self.assertEquals(mod.a, a, "module loaded (%s) but contents invalid" % mod) self.assertEquals(mod.b, b, |