Skip to content

Commit cabb008

Browse files
committed
Remove a test that is only relevant for Py2+3 combined codebases.
1 parent aca914c commit cabb008

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

jsonschema/tests/test_validators.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,12 +1246,6 @@ def test_is_type_evades_bool_inheriting_from_int(self):
12461246
self.assertFalse(self.Validator({}).is_type(True, "integer"))
12471247
self.assertFalse(self.Validator({}).is_type(True, "number"))
12481248

1249-
def test_patterns_can_be_native_strings(self):
1250-
"""
1251-
See https://github.com/Julian/jsonschema/issues/611.
1252-
"""
1253-
self.Validator({"pattern": "foo"}).validate("foo")
1254-
12551249
def test_it_can_validate_with_decimals(self):
12561250
schema = {"items": {"type": "number"}}
12571251
Validator = validators.extend(

0 commit comments

Comments
 (0)