Skip to content

Commit c2077cb

Browse files
committed
Redundant.
1 parent ed661c4 commit c2077cb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

jsonschema/tests/test_exceptions.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def test_children_have_their_errors_dicts_built(self):
254254
tree = exceptions.ErrorTree([e1, e2])
255255
self.assertEqual(tree["bar"][0].errors, {"foo": e1, "quux": e2})
256256

257-
def test_regression_multiple_errors_with_instance(self):
257+
def test_multiple_errors_with_instance(self):
258258
e1, e2 = (
259259
exceptions.ValidationError(
260260
"1",
@@ -267,7 +267,6 @@ def test_regression_multiple_errors_with_instance(self):
267267
path=["foobar", 2],
268268
instance="i2"),
269269
)
270-
# Will raise an exception if the bug is still there.
271270
exceptions.ErrorTree([e1, e2])
272271

273272
def test_it_does_not_contain_subtrees_that_are_not_in_the_instance(self):

0 commit comments

Comments
 (0)