Skip to content

Commit f62f8fe

Browse files
committed
test: KTL-1605: fix deprecate warning text
1 parent 0a4dc75 commit f62f8fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/kotlin/com/compiler/server/JvmRunnerTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class JvmRunnerTest : BaseExecutorTest() {
103103
assertEquals(1, result.compilerDiagnostics[0].interval?.start?.line)
104104
assertEquals(19, result.compilerDiagnostics[0].interval?.start?.ch)
105105
assertEquals(
106-
"'@Deprecated(...) @DeprecatedSinceKotlin(...) @IntrinsicConstEvaluation() fun toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.",
106+
"'fun toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.",
107107
result.compilerDiagnostics[0].message
108108
)
109109
}

0 commit comments

Comments
 (0)