From 8300180261c7a20d1b59cc61670779ef59068d0b Mon Sep 17 00:00:00 2001 From: Abduqodiri Qurbonzoda Date: Thu, 25 Mar 2021 19:08:33 +0300 Subject: [PATCH] [K/N] Remove AfterEach and BeforeEach typealiases in kotlin-test --- .../runtime/src/main/kotlin/kotlin/test/Annotation.kt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/kotlin-native/runtime/src/main/kotlin/kotlin/test/Annotation.kt b/kotlin-native/runtime/src/main/kotlin/kotlin/test/Annotation.kt index 0dc98487596..700b487c63c 100644 --- a/kotlin-native/runtime/src/main/kotlin/kotlin/test/Annotation.kt +++ b/kotlin-native/runtime/src/main/kotlin/kotlin/test/Annotation.kt @@ -40,8 +40,3 @@ public actual annotation class AfterTest */ @Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION) public actual annotation class Ignore - -@Deprecated("AfterEach should be replaced with AfterTest to unify usage of kotlin.test", level = DeprecationLevel.ERROR) -public typealias AfterEach = AfterTest -@Deprecated("BeforeEach should be replaced with BeforeTest to unify usage of kotlin.test", level = DeprecationLevel.ERROR) -public typealias BeforeEach = BeforeTest