Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit b3d9583

Browse files
committed
ダミーコンストラクタの利用を追加
1 parent c9aa67c commit b3d9583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/kotlin/com/mapk/krowmapper/KParameterFlattenTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class KParameterFlattenTest {
3333
every { getObject("qux_qux", any<Class<*>>()) } returns LocalDateTime.MIN
3434
}
3535

36-
val result = KRowMapper(::Dst, this::camelToSnake).mapRow(resultSet, 0)
36+
val result = KRowMapper<Dst>(this::camelToSnake).mapRow(resultSet, 0)
3737
assertEquals(expected, result)
3838

3939
verify(exactly = 1) { resultSet.getObject("baz_baz_foo_foo", Integer::class.java) }

0 commit comments

Comments
 (0)