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 4df7326 commit ff73496Copy full SHA for ff73496
1 file changed
src/test/java/org/apache/commons/csv/CSVParserTest.java
@@ -794,8 +794,9 @@ public void testGetOneLine() throws IOException {
794
public void testGetOneLineOneParser() throws IOException {
795
final CSVFormat format = CSVFormat.DEFAULT;
796
try (PipedWriter writer = new PipedWriter();
797
+ PipedReader origin = new PipedReader(writer);
798
CSVParser parser = CSVParser.builder()
- .setReader(new PipedReader(writer))
799
+ .setReader(origin)
800
.setFormat(format)
801
.get()) {
802
writer.append(CSV_INPUT_1);
0 commit comments