Skip to content

Commit 5269e07

Browse files
committed
format code
1 parent 6414c4d commit 5269e07

File tree

1 file changed

+4
-2
lines changed
  • core/database/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/core/database/dao

1 file changed

+4
-2
lines changed

core/database/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/core/database/dao/TopicDaoTest.kt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ class TopicDaoTest : TestDatabaseSetup() {
3131
val savedTopics = topicDao.getTopicEntities().first()
3232

3333
assertEquals(
34-
listOf("1", "2", "3"), savedTopics.map { it.id },
34+
listOf("1", "2", "3"),
35+
savedTopics.map { it.id },
3536
)
3637
}
3738

@@ -51,7 +52,8 @@ class TopicDaoTest : TestDatabaseSetup() {
5152
val savedTopics = topicDao.getOneOffTopicEntities()
5253

5354
assertEquals(
54-
listOf("1", "2", "3"), savedTopics.map { it.id },
55+
listOf("1", "2", "3"),
56+
savedTopics.map { it.id },
5557
)
5658
}
5759

0 commit comments

Comments
 (0)