From 2ea9d50c778e42f644cbe00ef2b9a42822c01508 Mon Sep 17 00:00:00 2001 From: Hudson Cooper Date: Tue, 10 Sep 2024 15:24:16 -0700 Subject: [PATCH] augment test for safety against resolution of issue #1018 --- tests/unit/library/test_json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/library/test_json.py b/tests/unit/library/test_json.py index 13ba90921..3f3505c02 100644 --- a/tests/unit/library/test_json.py +++ b/tests/unit/library/test_json.py @@ -2244,7 +2244,7 @@ def test_true_schema(self, target_obj): "schema_obj", [ False, - {"type": "object", "properties": {"a": False}}, + {"type": "object", "properties": {"a": False}, "required": ["a"]}, ] ) def test_false_schema(self, schema_obj):