We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e033d2d commit 4e2e777Copy full SHA for 4e2e777
2 files changed
build.sbt
@@ -1,4 +1,4 @@
1
-lazy val netLogoVersion = "7.0.0-2486d1e"
+lazy val netLogoVersion = "7.0.2"
2
3
scalaVersion := "3.7.0"
4
src/test/scala/org/nlogo/models/ModelCompilationTests.scala
@@ -51,7 +51,7 @@ class ModelCompilationTests extends TestModels {
51
def uncompilableExperiments(model: Model, ws: HeadlessWorkspace): Iterable[String] = {
52
val lab = HeadlessWorkspace.newLab
53
for {
54
- experiment <- BehaviorSpaceCoordinator.protocolsFromModel(model.file.getPath, ws)
+ experiment <- BehaviorSpaceCoordinator.protocolsFromModel(model.file.getPath)
55
error <- Try(lab.newWorker(experiment).compile(ws)).failed.toOption
56
} yield s"BehaviorSpace experiment '$experiment' does not compile: $error"
57
}
0 commit comments