Skip to content

Commit 11cf0c8

Browse files
committed
Fix test
1 parent 68b29a4 commit 11cf0c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/kotlin/org/jetbrains/kotlinx/jupyter/test/executeTests.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ class ExecuteTests : KernelServerTestsBase() {
271271
val msg = it.receiveMessage()
272272
assertEquals(MessageType.STREAM, msg.type)
273273
val msgText = (msg.content as StreamResponse).text
274-
assertStartsWith("[ERROR] Failed to load library", msgText)
274+
assertTrue("[ERROR] Failed to load library" in msgText)
275275
}
276276
)
277277
}

0 commit comments

Comments
 (0)