From c36abba30f23634251e5dcd77e5dd0d9890caac2 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 12 Aug 2024 12:53:49 +0000 Subject: [PATCH] Update utest to 0.8.4 --- build.sc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build.sc b/build.sc index b619614e..2212d8e3 100644 --- a/build.sc +++ b/build.sc @@ -23,7 +23,7 @@ object Deps { val jna = ivy"net.java.dev.jna:jna:5.14.0" val geny = ivy"com.lihaoyi::geny::1.1.1" val sourcecode = ivy"com.lihaoyi::sourcecode::0.4.2" - val utest = ivy"com.lihaoyi::utest::0.8.3" + val utest = ivy"com.lihaoyi::utest::0.8.4" def scalaLibrary(version: String) = ivy"org.scala-lang:scala-library:${version}" } @@ -116,16 +116,15 @@ trait OsModule extends OsLibModule { outer => object os extends Module { - object jvm extends Cross[OsJvmModule](scalaVersions) trait OsJvmModule extends OsModule with MiMaChecks { - object test extends ScalaTests with OsLibTestModule{ + object test extends ScalaTests with OsLibTestModule { // we check the textual output of system commands and expect it in english def forkEnv = super.forkEnv() ++ Map( "TEST_JAR_WRITER_ASSEMBLY" -> testJarWriter.assembly().path.toString, "TEST_JAR_READER_ASSEMBLY" -> testJarReader.assembly().path.toString, - "TEST_JAR_EXIT_ASSEMBLY" -> testJarExit.assembly().path.toString, + "TEST_JAR_EXIT_ASSEMBLY" -> testJarExit.assembly().path.toString ) object testJarWriter extends JavaModule