Skip to content

Commit f195a3f

Browse files
committed
Rename property in test schema.
This test has nothing to do with additionalProperties; this is just a property name.
1 parent 5b0e318 commit f195a3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ def test_string_types_deprecated(self):
644644

645645
def test_schema_error_errors(self):
646646
try:
647-
validate({}, { "properties": { "additionalProperties": False } }, stop_on_error=False)
647+
validate({}, { "properties": { "test": False } }, stop_on_error=False)
648648
except SchemaError as e:
649649
self.assertGreater(len(e.errors), 0)
650650
else:

0 commit comments

Comments
 (0)