Skip to content

Commit 8feaea4

Browse files
committed
The test suite schema is draft 4, not draft3 anymore.
1 parent 15ba997 commit 8feaea4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/jsonschema_suite

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class SanityTests(unittest.TestCase):
125125

126126
@unittest.skipIf(jsonschema is None, "Validation library not present!")
127127
def test_suites_are_valid(self):
128-
validator = jsonschema.Draft3Validator(TESTSUITE_SCHEMA)
128+
validator = jsonschema.Draft4Validator(TESTSUITE_SCHEMA)
129129
for tests in files(self.test_files):
130130
try:
131131
validator.validate(tests)

0 commit comments

Comments
 (0)