From 4acdf177c7001d7cca7c641fc635c9edd501d556 Mon Sep 17 00:00:00 2001 From: Jens Steidl <Jens.Steidl@slub-dresden.de> Date: Wed, 13 Dec 2023 11:53:51 +0100 Subject: [PATCH] - fix: getter changed --- .../dps/repository/plugin/Validation/TestValidateSchema.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/org/slub/rosetta/dps/repository/plugin/Validation/TestValidateSchema.java b/resources/org/slub/rosetta/dps/repository/plugin/Validation/TestValidateSchema.java index d965827..793ee04 100644 --- a/resources/org/slub/rosetta/dps/repository/plugin/Validation/TestValidateSchema.java +++ b/resources/org/slub/rosetta/dps/repository/plugin/Validation/TestValidateSchema.java @@ -82,7 +82,7 @@ public class TestValidateSchema { e.printStackTrace(); has_exception = true; } - System.out.println( resultHandle.getLog()); + System.out.println( resultHandle.getDebugLog()); assertFalse("schema validation of " + testfile + " should not raise an exception", has_exception ); assertTrue( "schema validation of " + testfile + " should return true for sucessful validation", res); -- GitLab