diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-27 10:36:16 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-27 10:36:16 -0500 |
commit | 1fa418c6c1c33117308e3d94f18f8fc1a9193393 (patch) | |
tree | 3502c943b2a3da2c41a4b59faf002db94cf3f9ac /tests/test_html.py | |
parent | a8f8bb898ac35acd493524d470223319b2271f4a (diff) | |
download | python-coveragepy-git-1fa418c6c1c33117308e3d94f18f8fc1a9193393.tar.gz |
Try out pylint spelling. Kinda noisy, but fixed some stuff.
Diffstat (limited to 'tests/test_html.py')
-rw-r--r-- | tests/test_html.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_html.py b/tests/test_html.py index 948a422f..9448447b 100644 --- a/tests/test_html.py +++ b/tests/test_html.py @@ -244,14 +244,14 @@ class HtmlWithUnparsableFilesTest(HtmlTestHelpers, CoverageTest): self.make_file("innocuous.py", "<h1>This isn't python!</h1>") cov.html_report(ignore_errors=True) self.assert_exists("htmlcov/index.html") - # this would be better as a glob, if the html layout changes: + # This would be better as a glob, if the HTML layout changes: self.assert_doesnt_exist("htmlcov/innocuous.html") def test_dothtml_not_python(self): # We run a .html file, and when reporting, we can't parse it as # Python. Since it wasn't .py, no error is reported. - # Run an "html" file + # Run an "HTML" file self.make_file("innocuous.html", "a = 3") self.run_command("coverage run innocuous.html") # Before reporting, change it to be an HTML file. |