Skip to content

Commit 2b6d928

Browse files
committed
Revert "Add test for unevaluatedProperties"
This reverts commit 75218a4.
1 parent e3bc2dc commit 2b6d928

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

jsonschema/tests/test_validators.py

-8
Original file line numberDiff line numberDiff line change
@@ -742,14 +742,6 @@ def test_unevaluated_properties_on_invalid_type(self):
742742
message = self.message_for(instance="foo", schema=schema)
743743
self.assertEqual(message, "'foo' is not of type 'object'")
744744

745-
def test_unevaluated_properties_with_additional_properties(self):
746-
schema = {
747-
"additionalProperties": {"type": "string"},
748-
"unevaluatedProperties": False,
749-
}
750-
validator = validators._LATEST_VERSION(schema)
751-
validator.validate(instance={"foo": "foo"})
752-
753745
def test_single_item(self):
754746
schema = {"prefixItems": [{}], "items": False}
755747
message = self.message_for(

0 commit comments

Comments
 (0)