summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-05-04 22:11:12 (GMT)
committerBrett Cannon <brett@python.org>2013-05-04 22:11:12 (GMT)
commitdea2ec4b1df1c9f5567591bfea427fa3d2d694e8 (patch)
tree3073f6ec8ab6dbc6e2a6625f20e18c03103725e0
parentc8c952ce2a77343b6fe87a9534026b4b34011322 (diff)
downloadcpython-dea2ec4b1df1c9f5567591bfea427fa3d2d694e8.zip
cpython-dea2ec4b1df1c9f5567591bfea427fa3d2d694e8.tar.gz
cpython-dea2ec4b1df1c9f5567591bfea427fa3d2d694e8.tar.bz2
Fix a test to not use an assertion for something that could be
legitimately false.
-rw-r--r--Lib/test/test_imp.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_imp.py b/Lib/test/test_imp.py
index 2b2bbd3..96771d8 100644
--- a/Lib/test/test_imp.py
+++ b/Lib/test/test_imp.py
@@ -241,8 +241,9 @@ class ImportTests(unittest.TestCase):
# Issue #15902
name = '_heapq'
found = imp.find_module(name)
- assert found[2][2] == imp.C_EXTENSION
found[0].close()
+ if found[2][2] != imp.C_EXTENSION:
+ return
imp.load_module(name, None, *found[1:])