summaryrefslogtreecommitdiff
path: root/tests/test_config.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-27 10:36:16 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-27 10:36:16 -0500
commit16a6d9c45e80a67fe201fd0fe354fcd4aae25c9a (patch)
treec8ed0b7c2ce2dd1097ef72e0de06bb3c4fcb9cbf /tests/test_config.py
parent00506792848ee83de65b1740b3d82229ca55817a (diff)
downloadpython-coveragepy-16a6d9c45e80a67fe201fd0fe354fcd4aae25c9a.tar.gz
Try out pylint spelling. Kinda noisy, but fixed some stuff.
Diffstat (limited to 'tests/test_config.py')
-rw-r--r--tests/test_config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_config.py b/tests/test_config.py
index 34727ae..e042492 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -20,7 +20,7 @@ class ConfigTest(CoverageTest):
self.assertEqual(cov.config.data_file, ".coverage")
def test_arguments(self):
- # Arguments to the constructor are applied to the configuation.
+ # Arguments to the constructor are applied to the configuration.
cov = coverage.coverage(timid=True, data_file="fooey.dat")
self.assertTrue(cov.config.timid)
self.assertFalse(cov.config.branch)
@@ -129,7 +129,7 @@ class ConfigTest(CoverageTest):
)
def test_tweaks_after_constructor(self):
- # Arguments to the constructor are applied to the configuation.
+ # Arguments to the constructor are applied to the configuration.
cov = coverage.coverage(timid=True, data_file="fooey.dat")
cov.config["run:timid"] = False