summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-11-28 14:01:13 -0500
committerNed Batchelder <ned@nedbatchelder.com>2009-11-28 14:01:13 -0500
commitbe8afd0bc3f173926fc751c50f9975543f301a91 (patch)
tree6bb3ce8ba6c4e20c75871f06786113e515cc0a1c /test
parent0fd1a4a46c59ddf5c018364226c5d8a1525aff8c (diff)
downloadpython-coveragepy-git-be8afd0bc3f173926fc751c50f9975543f301a91.tar.gz
Read a config file to get some of our configuration.
--HG-- branch : config
Diffstat (limited to 'test')
-rw-r--r--test/test_api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_api.py b/test/test_api.py
index 932606fd..270c7235 100644
--- a/test/test_api.py
+++ b/test/test_api.py
@@ -161,7 +161,7 @@ class ApiTest(CoverageTest):
# Measure without the stdlib.
cov1 = coverage.coverage()
- self.assertEqual(cov1.cover_pylib, False)
+ self.assertEqual(cov1.config.cover_pylib, False)
cov1.start()
self.import_module("mymain")
cov1.stop()