summaryrefslogtreecommitdiff
path: root/tests/test_config.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-01-18 13:25:49 -0500
committerNed Batchelder <ned@nedbatchelder.com>2015-01-18 13:25:49 -0500
commit8d60d392c5d9b00560c4a9418902f12126dae125 (patch)
treec6634c5c0b940a32c1fb0afb36b4a928a91f3304 /tests/test_config.py
parent0d0836309b6354a07fb09cd8d28b309b6c8dba6c (diff)
downloadpython-coveragepy-git-8d60d392c5d9b00560c4a9418902f12126dae125.tar.gz
Collect all the nudgy environment checks into coverage.env
Diffstat (limited to 'tests/test_config.py')
-rw-r--r--tests/test_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_config.py b/tests/test_config.py
index 65586846..450c94fc 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -86,7 +86,7 @@ class ConfigTest(CoverageTest):
self.set_environ("COVERAGE_FILE", "fromenv.dat")
cov = coverage.coverage()
self.assertEqual(cov.config.data_file, "fromenv.dat")
- # But the constructor args override the env var.
+ # But the constructor arguments override the environment variable.
cov = coverage.coverage(data_file="fromarg.dat")
self.assertEqual(cov.config.data_file, "fromarg.dat")