Skip to content

Commit ee627c4

Browse files
manycodingJulian
authored andcommitted
Fix test_it_validates_formats_by_default
1 parent 3bb0832 commit ee627c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsonschema/tests/test_validators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -993,7 +993,7 @@ def test_it_returns_true_for_formats_it_does_not_know_about(self):
993993

994994
def test_it_validates_formats_by_default(self):
995995
validator = self.Validator({})
996-
self.assertIsInstance(validator.format_checker, FormatChecker())
996+
self.assertIsInstance(validator.format_checker, FormatChecker)
997997

998998
def test_it_validates_formats_if_a_checker_is_provided(self):
999999
checker = FormatChecker()

0 commit comments

Comments
 (0)