From 1efd4ee9aea068bb6628dc38c06a6f8e2ae5a679 Mon Sep 17 00:00:00 2001 From: Jens Heise Date: Mon, 1 Jun 2020 20:34:00 +0200 Subject: [PATCH] Bugfix in ZF2ZInvoiceImporterTest: Make test work on case sensitive file systems The generated file is named "testout-ZF2new.pdf" not "testout-ZF2New.pdf" which will make the test fail on case sensitive file systems as can be found on many unix like systems. --- .../org/mustangproject/ZUGFeRD/ZF2ZInvoiceImporterTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/src/test/java/org/mustangproject/ZUGFeRD/ZF2ZInvoiceImporterTest.java b/library/src/test/java/org/mustangproject/ZUGFeRD/ZF2ZInvoiceImporterTest.java index 674766be..e99e683b 100644 --- a/library/src/test/java/org/mustangproject/ZUGFeRD/ZF2ZInvoiceImporterTest.java +++ b/library/src/test/java/org/mustangproject/ZUGFeRD/ZF2ZInvoiceImporterTest.java @@ -41,7 +41,7 @@ import junit.framework.TestSuite; * used for this import, testout-ZF2New.pdf */ public class ZF2ZInvoiceImporterTest extends TestCase { - final String TARGET_PDF = "./target/testout-ZF2New.pdf"; + final String TARGET_PDF = "./target/testout-ZF2new.pdf"; public void testInvoiceImport() {