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_json.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_json.py')
-rw-r--r-- | tests/test_json.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/test_json.py b/tests/test_json.py index b750a666..63713af8 100644 --- a/tests/test_json.py +++ b/tests/test_json.py @@ -57,8 +57,8 @@ class JsonReportTest(UsingModulesMixin, CoverageTest): 'missing_branches': 1, 'percent_covered': 60.0, 'percent_covered_display': '60', - } - } + }, + }, }, 'totals': { 'missing_lines': 1, @@ -71,7 +71,7 @@ class JsonReportTest(UsingModulesMixin, CoverageTest): 'percent_covered_display': '60', 'covered_branches': 1, 'missing_branches': 1, - } + }, } self._assert_expected_json_report(cov, expected_result) @@ -95,8 +95,8 @@ class JsonReportTest(UsingModulesMixin, CoverageTest): 'num_statements': 3, 'percent_covered': 66.66666666666667, 'percent_covered_display': '67', - } - } + }, + }, }, 'totals': { 'excluded_lines': 0, @@ -105,7 +105,7 @@ class JsonReportTest(UsingModulesMixin, CoverageTest): 'num_statements': 3, 'percent_covered': 66.66666666666667, 'percent_covered_display': '67', - } + }, } self._assert_expected_json_report(cov, expected_result) @@ -148,8 +148,8 @@ class JsonReportTest(UsingModulesMixin, CoverageTest): 'num_statements': 3, 'percent_covered': 66.66666666666667, 'percent_covered_display': '66.67', - } - } + }, + }, }, 'totals': { 'excluded_lines': 0, @@ -158,7 +158,7 @@ class JsonReportTest(UsingModulesMixin, CoverageTest): 'num_statements': 3, 'percent_covered': 66.66666666666667, 'percent_covered_display': '66.67', - } + }, } self._assert_expected_json_report(cov, expected_result) |