From 6a6911e0e6a8070b5fbab9204aa353d138875c4f Mon Sep 17 00:00:00 2001 From: Anne Ferger Date: Wed, 10 Apr 2024 10:56:26 +0200 Subject: [PATCH] rename expected file to be consistent for other plugins --- src/test/java/de/edirom/meigarage/mei/MEIXSLConverterTest.java | 2 +- src/test/resources/{document.xml => expected-output.xml} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/test/resources/{document.xml => expected-output.xml} (100%) diff --git a/src/test/java/de/edirom/meigarage/mei/MEIXSLConverterTest.java b/src/test/java/de/edirom/meigarage/mei/MEIXSLConverterTest.java index efc3561..2a5f338 100644 --- a/src/test/java/de/edirom/meigarage/mei/MEIXSLConverterTest.java +++ b/src/test/java/de/edirom/meigarage/mei/MEIXSLConverterTest.java @@ -40,7 +40,7 @@ public void convert() throws IOException, ConverterException { assertNotEquals("", new String(Files.readAllBytes(Paths.get("src/test/resources/test-output.ly/document.xml")), "UTF-8")); assertEquals("The files differ!", new String(Files.readAllBytes(Paths.get("src/test/resources/test-output.ly/document.xml"))), - new String(Files.readAllBytes(Paths.get("src/test/resources/document.xml")))); + new String(Files.readAllBytes(Paths.get("src/test/resources/expected-output.xml")))); is.close(); os.close(); isout.close(); diff --git a/src/test/resources/document.xml b/src/test/resources/expected-output.xml similarity index 100% rename from src/test/resources/document.xml rename to src/test/resources/expected-output.xml