Skip to content

Commit 08ca710

Browse files
committed
Updated unit test.
1 parent d64ced9 commit 08ca710

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/de/westemeyer/plugins/multiselect/parser/CsvParserTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public void close() throws IOException {
7272

7373
@Test
7474
void analyzeConfiguration() throws IOException {
75-
try (ByteArrayInputStream inputStream = new ByteArrayInputStream("H,One\nV,VAR1,VAR2\n".getBytes())) {
75+
try (ByteArrayInputStream inputStream = new ByteArrayInputStream("H,One\nV,VAR1,VAR2\nT,a\nC,val1,val2".getBytes())) {
7676
MultiselectDecisionTree tree = new CsvParser().analyzeConfiguration(inputStream);
7777
assertNull(tree.getVariableDescriptions().get(1).getLabel());
7878
}

0 commit comments

Comments
 (0)