You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: jvm/basic/jvm-maven-deps/host/src/test/kotlin/org/jetbrains/kotlin/script/examples/jvm/resolve/maven/test/resolveTest.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -38,10 +38,10 @@ class ResolveTest {
38
38
val res = evalFile(File("testData/hello-unresolved-junit.scriptwithdeps.kts"))
39
39
40
40
Assert.assertTrue(
41
-
"test failed - expecting a failure with the message \"Unresolved reference: junit\" but received "+
41
+
"test failed - expecting a failure with the message \"Unresolved reference 'junit'\" but received "+
Copy file name to clipboardExpand all lines: jvm/basic/jvm-simple-script/host/src/test/kotlin/org/jetbrains/kotlin/script/examples/jvm/simple/test/simpleTest.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -28,9 +28,9 @@ class SimpleTest {
28
28
val res = evalFile(File("testData/error.simplescript.kts"))
29
29
30
30
Assert.assertTrue(
31
-
"test failed - expecting a failure with the message \"Unresolved reference: abracadabra\" but received "+
31
+
"test failed - expecting a failure with the message \"Unresolved reference 'abracadabra'\" but received "+
Copy file name to clipboardExpand all lines: jvm/simple-main-kts/simple-main-kts-test/src/test/kotlin/org/jetbrains/kotlin/script/examples/simpleMainKts/test/SimpleMainKtsTest.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ class SimpleMainKtsTest {
47
47
@Test
48
48
funtestResolveJunitDynamicVer() {
49
49
val errRes = evalFile(File("$TEST_DATA_ROOT/hello-resolve-junit-dynver-error.smain.kts"))
0 commit comments