File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
core/src/test/java/org/everit/json/schema/loader Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 45
45
import org .json .JSONObject ;
46
46
import org .json .JSONPointer ;
47
47
import org .junit .Assert ;
48
- import org .junit .Ignore ;
49
48
import org .junit .Test ;
50
49
51
50
public class SchemaLoaderTest {
@@ -245,15 +244,13 @@ public void pointerResolutionQueryFailure() {
245
244
SchemaLoader .load (get ("pointerResolutionQueryFailure" ));
246
245
}
247
246
248
- @ Test @ Ignore
247
+ @ Test
249
248
public void propsAroundRefExtendTheReferredSchema () {
250
249
ObjectSchema actual = (ObjectSchema ) SchemaLoader
251
250
.load (get ("propsAroundRefExtendTheReferredSchema" ));
252
251
ReferenceSchema propRef = (ReferenceSchema ) actual .getPropertySchemas ().get ("prop" );
253
252
ObjectSchema prop = (ObjectSchema ) propRef
254
253
.getReferredSchema ();
255
- System .out .println (propRef );
256
- System .out .println (prop );
257
254
assertTrue (prop .requiresObject ());
258
255
assertEquals (1 , prop .getMinProperties ().intValue ());
259
256
}
You can’t perform that action at this time.
0 commit comments