summaryrefslogtreecommitdiff
path: root/tests/test_html.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-06-17 14:19:47 -0400
committerNed Batchelder <ned@nedbatchelder.com>2019-06-17 18:33:57 -0400
commit1ae442ac70efa74d50a98568d7d7e01b3b7792b8 (patch)
tree2e03f6c08c7bfd76fde220016fac63260f7def89 /tests/test_html.py
parent9b75b1ae769a1cf8255c4193f51af0c599c6bd4c (diff)
downloadpython-coveragepy-git-1ae442ac70efa74d50a98568d7d7e01b3b7792b8.tar.gz
Make the incremental checker a little smarter.
Diffstat (limited to 'tests/test_html.py')
-rw-r--r--tests/test_html.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_html.py b/tests/test_html.py
index 49049934..9cd47882 100644
--- a/tests/test_html.py
+++ b/tests/test_html.py
@@ -268,8 +268,8 @@ class HtmlDeltaTest(HtmlTestHelpers, CoverageTest):
with open("htmlcov/status.json") as status_json:
status_data = json.load(status_json)
- self.assertEqual(status_data['format'], 1)
- status_data['format'] = 2
+ self.assertEqual(status_data['format'], 2)
+ status_data['format'] = 99
with open("htmlcov/status.json", "w") as status_json:
json.dump(status_data, status_json)