Get rid of deprecated annotations and modifiers in stdlib (besides JS)
This commit is contained in:
@@ -8,7 +8,7 @@ import kotlin.test.*
|
||||
import org.junit.Test as test
|
||||
|
||||
class MathTest {
|
||||
test fun testBigInteger() {
|
||||
@test fun testBigInteger() {
|
||||
val a = BigInteger("2")
|
||||
val b = BigInteger("3")
|
||||
|
||||
@@ -21,7 +21,7 @@ class MathTest {
|
||||
assertEquals(BigInteger("-2"), -a remainder b)
|
||||
}
|
||||
|
||||
test fun testBigDecimal() {
|
||||
@test fun testBigDecimal() {
|
||||
val a = BigDecimal("2")
|
||||
val b = BigDecimal("3")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user