File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
json-java21-schema/src/test/java/io/github/simbo1905/json/schema Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -84,15 +84,15 @@ public Stream<DynamicTest> testId() throws JsonProcessingException {
8484 try {
8585 Assertions .assertEquals (expected , actual );
8686 } catch (AssertionError e ) {
87- LOG .fine (() -> "Assertion failed: " + groupDesc + " — expected=" + expected + ", actual=" + actual + " (" + (( Path ) null ). getFileName () + " )" );
87+ LOG .fine (() -> "Assertion failed: " + groupDesc + " — expected=" + expected + ", actual=" + actual + " (JsonSchemaDraft4Test.java )" );
8888 throw e ;
8989 }
9090
9191 }));
9292 } catch (Exception ex ) {
9393 /// Unsupported schema for this group; emit a single skipped test for visibility
9494 final var reason = ex .getMessage () == null ? ex .getClass ().getSimpleName () : ex .getMessage ();
95- LOG .fine (()->"Skipping group due to unsupported schema: " + groupDesc + " — " + reason + " (" + (( Path ) null ). getFileName () + " )" );
95+ LOG .fine (()->"Skipping group due to unsupported schema: " + groupDesc + " — " + reason + " (JsonSchemaDraft4Test.java )" );
9696
9797 return Stream .of (DynamicTest .dynamicTest (groupDesc + " – SKIPPED: " + reason , () -> {
9898 if (JsonSchemaCheckIT .isStrict ()) throw ex ;
You can’t perform that action at this time.
0 commit comments