summaryrefslogtreecommitdiff
path: root/tests/test_json.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_json.py')
-rw-r--r--tests/test_json.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_json.py b/tests/test_json.py
index 92dee6d9..f7ce7934 100644
--- a/tests/test_json.py
+++ b/tests/test_json.py
@@ -54,7 +54,9 @@ class JsonReportTest(UsingModulesMixin, CoverageTest):
'num_branches': 2,
'excluded_lines': 0,
'num_partial_branches': 1,
- 'percent_covered': 60.0
+ 'covered_branches': 1,
+ 'missing_branches': 1,
+ 'percent_covered': 60.0,
}
}
},
@@ -67,7 +69,7 @@ class JsonReportTest(UsingModulesMixin, CoverageTest):
'num_partial_branches': 1,
'percent_covered': 60.0,
'covered_branches': 1,
- 'missing_branches': 1
+ 'missing_branches': 1,
}
}
self._assert_expected_json_report(cov, expected_result)