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

Commit b4d67fc

Browse files
committed
フォーマッティング
1 parent 93085a4 commit b4d67fc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ class UseDBMappingTest {
6161

6262
jdbcTemplate = JdbcTemplate(dataSource)
6363

64-
jdbcTemplate.execute("""
64+
jdbcTemplate.execute(
65+
"""
6566
CREATE TABLE IF NOT EXISTS `foo_table` (
6667
`foo_id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
6768
`foo_name` VARCHAR(255) NOT NULL,
@@ -70,7 +71,8 @@ class UseDBMappingTest {
7071
`description` VARCHAR(1023) NULL DEFAULT NULL,
7172
PRIMARY KEY (`foo_id`)
7273
);
73-
""".trimIndent())
74+
""".trimIndent()
75+
)
7476

7577
val data = FooInsert(10, "Foo", FooStatus.archive, false, null)
7678

0 commit comments

Comments
 (0)