From fc2848b02585bfd67d7733dd84268b26f9f7c20b Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 16 Oct 2022 13:27:10 -0400 Subject: [PATCH] Enable some CSVPrinterTest tests * testJira135_part1 * testJira135_part3 * testRandomPostgreSqlText --- src/test/java/org/apache/commons/csv/CSVPrinterTest.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/test/java/org/apache/commons/csv/CSVPrinterTest.java b/src/test/java/org/apache/commons/csv/CSVPrinterTest.java index 8a9a36bc..1f460e84 100644 --- a/src/test/java/org/apache/commons/csv/CSVPrinterTest.java +++ b/src/test/java/org/apache/commons/csv/CSVPrinterTest.java @@ -732,7 +732,6 @@ public class CSVPrinterTest { } @Test - @Disabled public void testJira135_part1() throws IOException { final CSVFormat format = CSVFormat.DEFAULT.withRecordSeparator('\n').withQuote(DQUOTE_CHAR).withEscape(BACKSLASH); final StringWriter sw = new StringWriter(); @@ -764,7 +763,6 @@ public class CSVPrinterTest { } @Test - @Disabled public void testJira135_part3() throws IOException { final CSVFormat format = CSVFormat.DEFAULT.withRecordSeparator('\n').withQuote(DQUOTE_CHAR).withEscape(BACKSLASH); final StringWriter sw = new StringWriter(); @@ -1631,7 +1629,6 @@ public class CSVPrinterTest { } @Test - @Disabled public void testRandomPostgreSqlText() throws Exception { doRandom(CSVFormat.POSTGRESQL_TEXT, ITERATIONS_FOR_RANDOM_TEST); }