Skip to content

Commit cecb9a4

Browse files
committed
test: fix test
1 parent 898b7f2 commit cecb9a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/adventofcode/flashk/common/PartitionsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ void fromStringPartitionSize4() {
4545
List<String> result = Partitions.fromString("abcd", 4);
4646

4747
assertEquals(1, result.size());
48-
assertEquals("abcd", result.getFirst(0));
48+
assertEquals("abcd", result.getFirst());
4949
}
5050

5151
}

0 commit comments

Comments
 (0)