summaryrefslogtreecommitdiff
path: root/tests/test_oddball.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2013-04-21 17:17:45 -0400
committerNed Batchelder <ned@nedbatchelder.com>2013-04-21 17:17:45 -0400
commit9eebc5f21c4d7def572fedc1eea4ec0a1c544b56 (patch)
treeaa36fafcbbd121da1f49895ae7c2ad70d19f328c /tests/test_oddball.py
parente911a7867e5c5bfac712e56280e61afc166e32c0 (diff)
downloadpython-coveragepy-9eebc5f21c4d7def572fedc1eea4ec0a1c544b56.tar.gz
Tweaks to Matt's merged pull request.
Diffstat (limited to 'tests/test_oddball.py')
-rw-r--r--tests/test_oddball.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/test_oddball.py b/tests/test_oddball.py
index f136eb4..3352a0c 100644
--- a/tests/test_oddball.py
+++ b/tests/test_oddball.py
@@ -308,11 +308,10 @@ class ExceptionTest(CoverageTest):
for f, llist in lines.items():
# f is a path to a python module, so we drop the '.py' to get
# a callname
- callname = os.path.basename(f)[:-3]
- if callname not in callnames:
- # ignore this file.
- continue
- clean_lines[os.path.basename(f)] = llist
+ basename = os.path.basename(f)
+ assert basename.endswith(".py")
+ if basename[:-3] in callnames:
+ clean_lines[basename] = llist
self.assertEqual(clean_lines, lines_expected)