Fixed maven multiplatform test

This commit is contained in:
Anton Bannykh
2017-07-27 00:15:11 +03:00
parent 79921b0206
commit e9e81d96a5
3 changed files with 3 additions and 4 deletions
@@ -1,6 +1,5 @@
package org.jetbrains
import org.junit.*
import kotlin.test.*
class JSSpecificTest {
@@ -8,4 +7,4 @@ class JSSpecificTest {
fun test1() {
assertEquals(1, 1)
}
}
}
@@ -7,4 +7,4 @@ class JVMSpecificTest {
fun test1() {
Assert.assertEquals(1, 1)
}
}
}
@@ -1,7 +1,7 @@
package org.jetbrains
import org.junit.*
import kotlin.test.*
import org.junit.Test
open class SharedTest {
@Test