Skip to content

Commit ac5b01b

Browse files
committed
Reformat
1 parent 931186d commit ac5b01b

File tree

11 files changed

+362
-287
lines changed

11 files changed

+362
-287
lines changed

core/src/commonIntegrationTest/kotlin/com/powersync/sync/BaseInMemorySyncTest.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ abstract class BaseInMemorySyncTest {
5252
connector =
5353
mock<PowerSyncBackendConnector> {
5454
everySuspend { getCredentialsCached() } returns
55-
PowerSyncCredentials(
56-
token = "test-token",
57-
userId = "test-user",
58-
endpoint = "https://test.com",
59-
)
55+
PowerSyncCredentials(
56+
token = "test-token",
57+
userId = "test-user",
58+
endpoint = "https://test.com",
59+
)
6060

6161
everySuspend { invalidateCredentials() } returns Unit
6262
}

core/src/commonIntegrationTest/kotlin/com/powersync/sync/SyncIntegrationTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import kotlin.test.assertTrue
2828
import kotlin.time.Duration.Companion.seconds
2929

3030
@OptIn(co.touchlab.kermit.ExperimentalKermitApi::class)
31-
class SyncIntegrationTest: BaseInMemorySyncTest() {
31+
class SyncIntegrationTest : BaseInMemorySyncTest() {
3232
private suspend fun expectUserCount(amount: Int) {
3333
val users = database.getAll("SELECT * FROM users;") { UserRow.from(it) }
3434
assertEquals(amount, users.size, "Expected $amount users, got $users")

0 commit comments

Comments
 (0)