We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed661c4 commit c2077cbCopy full SHA for c2077cb
jsonschema/tests/test_exceptions.py
@@ -254,7 +254,7 @@ def test_children_have_their_errors_dicts_built(self):
254
tree = exceptions.ErrorTree([e1, e2])
255
self.assertEqual(tree["bar"][0].errors, {"foo": e1, "quux": e2})
256
257
- def test_regression_multiple_errors_with_instance(self):
+ def test_multiple_errors_with_instance(self):
258
e1, e2 = (
259
exceptions.ValidationError(
260
"1",
@@ -267,7 +267,6 @@ def test_regression_multiple_errors_with_instance(self):
267
path=["foobar", 2],
268
instance="i2"),
269
)
270
- # Will raise an exception if the bug is still there.
271
exceptions.ErrorTree([e1, e2])
272
273
def test_it_does_not_contain_subtrees_that_are_not_in_the_instance(self):
0 commit comments