Commit 1c87e294 authored by Benjamin Peterson's avatar Benjamin Peterson

condense

parent 0bbf9c99
...@@ -36,12 +36,8 @@ class ImportTests(unittest.TestCase): ...@@ -36,12 +36,8 @@ class ImportTests(unittest.TestCase):
def test_case_sensitivity(self): def test_case_sensitivity(self):
# Brief digression to test that import is case-sensitive: if we got # Brief digression to test that import is case-sensitive: if we got
# this far, we know for sure that "random" exists. # this far, we know for sure that "random" exists.
try: with self.assertRaises(ImportError):
import RAnDoM import RAnDoM
except ImportError:
pass
else:
self.fail("import of RAnDoM should have failed (case mismatch)")
def test_double_const(self): def test_double_const(self):
# Another brief digression to test the accuracy of manifest float # Another brief digression to test the accuracy of manifest float
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment