diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-04 07:30:08 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-04 07:30:08 -0400 |
commit | d6ae810aaaf3a35d9f947428f3fc22f0d8750073 (patch) | |
tree | 90271008f4bcd7bae8f43fa2dca74be9ce0bf3fc /tests/test_coverage.py | |
parent | f1491bdf248bc8bd073a1ae061757d7bfd787e79 (diff) | |
download | python-coveragepy-d6ae810aaaf3a35d9f947428f3fc22f0d8750073.tar.gz |
Fixing spelling
Diffstat (limited to 'tests/test_coverage.py')
-rw-r--r-- | tests/test_coverage.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/test_coverage.py b/tests/test_coverage.py index e2f0a61..9e2a444 100644 --- a/tests/test_coverage.py +++ b/tests/test_coverage.py @@ -1675,18 +1675,20 @@ class ModuleTest(CoverageTest): class ReportingTest(CoverageTest): """Tests of some reporting behavior.""" - # We don't make any temp files, but we need an empty directory to run the - # tests in. + # We don't make any temporary files, but we need an empty directory to run + # the tests in. no_files_in_temp_dir = True def test_no_data_to_report_on_annotate(self): - # Reporting with no data produces a nice message and no output dir. + # Reporting with no data produces a nice message and no output + # directory. with self.assertRaisesRegex(CoverageException, "No data to report."): self.command_line("annotate -d ann") self.assert_doesnt_exist("ann") def test_no_data_to_report_on_html(self): - # Reporting with no data produces a nice message and no output dir. + # Reporting with no data produces a nice message and no output + # directory. with self.assertRaisesRegex(CoverageException, "No data to report."): self.command_line("html -d htmlcov") self.assert_doesnt_exist("htmlcov") |