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

Commit 8e69cab

Browse files
committed
クラスからの初期化を追加
1 parent b3d9583 commit 8e69cab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class DefaultValueTest {
2222
every { resultSet.getObject("foo_id", any<Class<*>>()) } returns 1
2323
every { resultSet.getObject("bar_value", any<Class<*>>()) } returns "From result set."
2424

25-
val result = KRowMapper(::Dst, this::camelToSnake).mapRow(resultSet, 0)
25+
val result = KRowMapper(Dst::class, this::camelToSnake).mapRow(resultSet, 0)
2626

2727
Assertions.assertEquals(1, result.fooId)
2828
Assertions.assertEquals("default", result.barValue)

0 commit comments

Comments
 (0)