File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
jupyter/src/test/kotlin/org/jetbrains/kotlinx/spark/api/jupyter Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,14 @@ object Versions {
33 const val groupID = " org.jetbrains.kotlinx.spark"
44 const val kotlin = " 1.8.0"
55 const val jvmTarget = " 8"
6- const val jupyterJvmTarget = " 11 "
6+ const val jupyterJvmTarget = " 8 "
77
88 inline val spark get() = System .getProperty(" spark" ) as String
99 inline val scala get() = System .getProperty(" scala" ) as String
1010 inline val sparkMinor get() = spark.substringBeforeLast(' .' )
1111 inline val scalaCompat get() = scala.substringBeforeLast(' .' )
1212
13- const val jupyter = " 0.11 .0-210 "
13+ const val jupyter = " 0.12 .0-32-1 "
1414 const val kotest = " 5.5.4"
1515 const val kotestTestContainers = " 1.3.3"
1616 const val dokka = " 1.7.10"
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ class JupyterTests : ShouldSpec({
5959 librariesScanner.addLibrariesFromClassLoader(
6060 classLoader = currentClassLoader,
6161 host = this,
62+ notebook = notebook,
6263 integrationTypeNameRules = listOf(
6364 PatternNameAcceptanceRule (
6465 acceptsFlag = false,
@@ -341,6 +342,7 @@ class JupyterStreamingTests : ShouldSpec({
341342 librariesScanner.addLibrariesFromClassLoader(
342343 classLoader = currentClassLoader,
343344 host = this,
345+ notebook = notebook,
344346 integrationTypeNameRules = listOf(
345347 PatternNameAcceptanceRule (
346348 acceptsFlag = false,
You can’t perform that action at this time.
0 commit comments