Skip to content

Commit

Permalink
corrected a test... really! :-)
Browse files Browse the repository at this point in the history
  • Loading branch information
jstaerk committed Nov 26, 2023
1 parent 21e6903 commit 5ee38eb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ public void testA3UnknownExport() {
File tempFile = getResourceAsFile("MustangGnuaccountingBeispielRE-20201121_508blankoA3.pdf");
int exceptions=0;
try {
ZUGFeRDExporterFromA1 zea3 = new ZUGFeRDExporterFromA1().load(tempFile.getAbsolutePath());
zea3.setTransaction(i);
zea3.export(TARGET_PDF_FROM_A3_UNKNOWN);
IZUGFeRDExporter zea = new ZUGFeRDExporterFromPDFA().load(tempFile.getAbsolutePath());
zea.setTransaction(i);
zea.export(TARGET_PDF_FROM_A3_UNKNOWN);

} catch (IOException e) {
exceptions++;
Expand Down

0 comments on commit 5ee38eb

Please sign in to comment.