fix broken test

This commit is contained in:
Jonathan Shook 2024-02-01 20:25:01 -06:00
parent f70609dec0
commit 6ba25fdfae

View File

@ -32,7 +32,8 @@ class ConcatTest {
@Test
public void testMismatchedInserts() {
assertThrows(RuntimeException.class, () -> new Concat((c, s) -> c+s, "{}"));
Concat c = new Concat("{}");
assertThat(c.apply(3L)).isEqualTo("v:3");
}
@Test