Skip to content

Commit

Permalink
Removing the console output (println)
Browse files Browse the repository at this point in the history
Removing the console output (println)
  • Loading branch information
Nirus2000 committed Apr 3, 2024
1 parent 2c3eb2f commit cd7f22b
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import static org.hamcrest.collection.IsEmptyCollection.empty;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

import org.junit.Test;
Expand All @@ -40,7 +39,6 @@ public void testDepotAuszugWithPurchase01()
List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "Depotauszug01.txt"), errors);

assertThat(errors, empty());
System.out.println(Arrays.toString(results.toArray()));
assertThat(results.size(), is(10));

// check security
Expand Down

0 comments on commit cd7f22b

Please sign in to comment.