Skip to content

Commit 41ee794

Browse files
cleanup
1 parent 87a5862 commit 41ee794

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

firebase-firestore/src/jsTest/kotlin/dev/gitlive/firebase/firestore/firestore.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ package dev.gitlive.firebase.firestore
66

77
import kotlinx.coroutines.CoroutineScope
88
import kotlinx.coroutines.test.runTest
9-
import kotlin.js.json
109

1110
actual val emulatorHost: String = "localhost"
1211

test-utils/src/commonMain/kotlin/dev/gitlive/firebase/TestUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ package dev.gitlive.firebase
66

77
expect fun nativeMapOf(vararg pairs: Pair<String, Any?>): Any
88
expect fun nativeListOf(vararg elements: Any): Any
9-
expect fun nativeAssertEquals(expected: Any?, actual: Any?)
9+
expect fun nativeAssertEquals(expected: Any?, actual: Any?)

test-utils/src/iosMain/kotlin/dev/gitlive/firebase/TestUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ actual fun nativeMapOf(vararg pairs: Pair<String, Any?>): Any = mapOf(*pairs)
88
actual fun nativeListOf(vararg elements: Any): Any = listOf(*elements)
99
actual fun nativeAssertEquals(expected: Any?, actual: Any?) {
1010
kotlin.test.assertEquals(expected, actual)
11-
}
11+
}

test-utils/src/jsMain/kotlin/dev/gitlive/firebase/TestUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ actual fun nativeMapOf(vararg pairs: Pair<String, Any?>): Any = json(*pairs)
1010
actual fun nativeListOf(vararg elements: Any): Any = elements
1111
actual fun nativeAssertEquals(expected: Any?, actual: Any?) {
1212
kotlin.test.assertEquals(JSON.stringify(expected), JSON.stringify(actual))
13-
}
13+
}

0 commit comments

Comments
 (0)