diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-05-01 08:16:06 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-05-01 13:00:38 -0400 |
commit | 420c01394a31415d7a7cbb80be196bcfca48482c (patch) | |
tree | d71672faede9de984c024eadc678ae05ff5af558 /tests/test_html.py | |
parent | 53f00a00b7cfb5e856136ea600844160746d6ae2 (diff) | |
download | python-coveragepy-git-420c01394a31415d7a7cbb80be196bcfca48482c.tar.gz |
style: parens should indent the same as their opening line
Diffstat (limited to 'tests/test_html.py')
-rw-r--r-- | tests/test_html.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_html.py b/tests/test_html.py index 797fee1d..b1951cdb 100644 --- a/tests/test_html.py +++ b/tests/test_html.py @@ -363,7 +363,7 @@ class HtmlWithUnparsableFilesTest(HtmlTestHelpers, CoverageTest): assert_coverage_warnings( warns, re.compile(r"Couldn't parse Python file '.*innocuous.py' \(couldnt-parse\)"), - ) + ) self.assert_exists("htmlcov/index.html") # This would be better as a glob, if the HTML layout changes: self.assert_doesnt_exist("htmlcov/innocuous.html") @@ -868,8 +868,8 @@ assert len(math) == 18 gold_path("html/other"), "out/other", extra_scrubs=[ (r'href="d_[0-9a-z]{16}_', 'href="_TEST_TMPDIR_othersrc_'), - ], - ) + ], + ) contains( 'out/other/index.html', '<a href="here_py.html">here.py</a>', @@ -1096,7 +1096,7 @@ class HtmlWithContextsTest(HtmlTestHelpers, CoverageTest): assert b == (14-4) helper( 16 - ) + ) test_one() x = 20 |