Skip to content

Commit

Permalink
fix: small fix of misuse of List builder instead of repeat
Browse files Browse the repository at this point in the history
  • Loading branch information
y9vad9 committed Feb 19, 2024
1 parent b886c04 commit 839aa7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class TableTimersDataSourceTest {

@Test
fun `check get timers with page token returns correct page`(): Unit = runTest {
List(50) { index ->
repeat(50) { index ->
timers.createTimer("Test ${index + 1}", null, ownerId, creationTime = index.toLong())
}

Expand Down

0 comments on commit 839aa7d

Please sign in to comment.