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_files.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_files.py')
-rw-r--r-- | tests/test_files.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_files.py b/tests/test_files.py index 0780fdb3..5588c373 100644 --- a/tests/test_files.py +++ b/tests/test_files.py @@ -170,7 +170,7 @@ class MatcherTest(CoverageTest): files.canonical_filename("sub3/file4.py"), files.canonical_filename("sub4/file5.py"), files.canonical_filename("SUB5/file6.py"), - ] + ] tm = TreeMatcher(trees) assert tm.info() == sorted(trees) for filepath, matches in matches_to_try: @@ -418,7 +418,7 @@ class FindPythonFilesTest(CoverageTest): "sub/a.py", "sub/b.py", "sub/ssub/__init__.py", "sub/ssub/s.py", "sub/windows.pyw", - ]) + ]) @pytest.mark.skipif(not env.WINDOWS, reason="Only need to run Windows tests on Windows.") |