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 bd0c681 commit 8f82d83Copy full SHA for 8f82d83
src/test/java/org/eel/kitchen/Issue7Test.java
@@ -23,7 +23,6 @@ public void setUp()
23
draftv3 = JsonLoader.fromResource("/schema-draftv3.json");
24
schema1 = JsonLoader.fromResource("/schema1.json");
25
schema2 = JsonLoader.fromResource("/schema2.json");
26
-
27
}
28
29
@Test
@@ -40,8 +39,8 @@ public void testIssue7()
40
39
schema.validate(context, schema1);
41
assertTrue(context.isSuccess());
42
43
- schema = factory.create(schema1);
44
context = new ValidationContext();
+ schema = factory.create(schema1);
45
46
schema.validate(context, schema2);
47
assertFalse(context.isSuccess());
0 commit comments