Skip to content

Commit

Permalink
#400: Fix DefUntilTest after merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanaken committed Mar 15, 2024
1 parent 450f28c commit d48293b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ void listsSemanticsTest() {
() -> assertEquals(11, parse.get().offset.intValue()),
() -> assertEquals(11, offsets.size()),
() -> assertIterableEquals(List.of(0, 6, 12, 5, 10, 15, 7, 8, 9, 10, 11), offsets),
() -> assertEquals("01234567890", getAllValues(parse.get().order, "test").head.asString())
() -> assertEquals("01234567890", getAllValues(parse.get().order, "test").get(0).asString())
);
}

Expand Down

0 comments on commit d48293b

Please sign in to comment.