Skip to content

Commit a58381d

Browse files
committed
fix for multi choice export test
1 parent 8b53707 commit a58381d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/org/labkey/test/util/data/TestDataUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ public static List<List<String>> readRowsFromFile(File file, CSVFormat format) t
581581
public static String parseMultiValueText(String multiValueString) throws IOException
582582
{
583583
CSVFormat format = CSVFormat.RFC4180.builder()
584-
.setIgnoreSurroundingSpaces(true).setTrim(true).setQuote('"').get();
584+
.setIgnoreSurroundingSpaces(true).setTrim(true).get();
585585
try (CSVParser parser = format.parse(new StringReader(multiValueString)))
586586
{
587587
List<CSVRecord> records = parser.getRecords();

0 commit comments

Comments
 (0)