Raise deprecation level for org.junit.Test in stdlib for common and JS

#KT-21703
This commit is contained in:
Ilya Gorbunov
2018-09-06 05:02:10 +03:00
parent 1a8b258d86
commit ad76edd7b7
5 changed files with 9 additions and 5 deletions
@@ -10,6 +10,6 @@ package org.junit
@Deprecated(
"Use 'Test' from kotlin.test package",
replaceWith = ReplaceWith("kotlin.test.Test", "kotlin.test.Test"),
level = DeprecationLevel.WARNING
level = DeprecationLevel.ERROR
)
expect annotation class Test()