We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 394e65c commit a1b4a4dCopy full SHA for a1b4a4d
1 file changed
src/test/java/org/apache/commons/csv/CSVPrinterTest.java
@@ -1516,7 +1516,7 @@ public void testPrintRecordsWithCSVRecord() throws IOException {
1516
public void testPrintRecordsWithEmptyVector() throws IOException {
1517
final PrintStream out = System.out;
1518
try {
1519
- System.setOut(new PrintStream(NullOutputStream.NULL_OUTPUT_STREAM));
+ System.setOut(new PrintStream(NullOutputStream.INSTANCE));
1520
try (CSVPrinter csvPrinter = CSVFormat.POSTGRESQL_TEXT.printer()) {
1521
final Vector<CSVFormatTest.EmptyEnum> vector = new Vector<>();
1522
final int expectedCapacity = 23;
0 commit comments