summaryrefslogtreecommitdiff
path: root/test/test_testing.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-06-13 21:46:35 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-06-13 21:46:35 -0400
commit42afb74959d043efa3d30873703736d3552aebfa (patch)
treee4df7b64bfdbb463896a2bfcebb8c31a64a28c08 /test/test_testing.py
parent5acd2aed8f2654a120bc8e74feafa523cbbc0c6f (diff)
downloadpython-coveragepy-42afb74959d043efa3d30873703736d3552aebfa.tar.gz
The 'source' option is a list of directories or packages to limit coverage's attention.
Diffstat (limited to 'test/test_testing.py')
-rw-r--r--test/test_testing.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_testing.py b/test/test_testing.py
index 9bbb7cc..1cae931 100644
--- a/test/test_testing.py
+++ b/test/test_testing.py
@@ -107,5 +107,5 @@ class CoverageTestTest(CoverageTest):
self.make_file("sub/second.txt", "Second")
self.assertEqual(open("sub/second.txt").read(), "Second")
# A deeper directory
- self.make_file("sub/deeper/evenmore/third.txt", "Third")
- self.assertEqual(open("sub/deeper/evenmore/third.txt").read(), "Third")
+ self.make_file("sub/deeper/evenmore/third.txt")
+ self.assertEqual(open("sub/deeper/evenmore/third.txt").read(), "")