Skip to content

Commit 60c8a1b

Browse files
committed
use the right test imports
1 parent 8a87bd0 commit 60c8a1b

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/collections/CaseInsensitiveMapTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
*/
55
package aws.smithy.kotlin.runtime.collections
66

7-
import org.junit.jupiter.api.Assertions.assertFalse
87
import kotlin.test.Test
98
import kotlin.test.assertEquals
9+
import kotlin.test.assertFalse
1010
import kotlin.test.assertTrue
1111

1212
class CaseInsensitiveMapTest {

runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/collections/CaseInsensitiveMutableStringSetTest.kt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
package aws.smithy.kotlin.runtime.collections
22

3-
import org.junit.jupiter.api.Test
4-
import kotlin.test.assertEquals
5-
import kotlin.test.assertFalse
6-
import kotlin.test.assertNotEquals
7-
import kotlin.test.assertTrue
3+
import kotlin.test.*
84

95
private val input = setOf("APPLE", "banana", "cHeRrY")
106
private val variations = (input + input.map { it.lowercase() } + input.map { it.uppercase() })

0 commit comments

Comments
 (0)