diff --git a/internal/zinc-ivy-integration/src/test/scala/sbt/internal/inc/ZincComponentCompilerSpec.scala b/internal/zinc-ivy-integration/src/test/scala/sbt/internal/inc/ZincComponentCompilerSpec.scala index cbba8021b..3fbd1a24f 100644 --- a/internal/zinc-ivy-integration/src/test/scala/sbt/internal/inc/ZincComponentCompilerSpec.scala +++ b/internal/zinc-ivy-integration/src/test/scala/sbt/internal/inc/ZincComponentCompilerSpec.scala @@ -10,6 +10,7 @@ class ZincComponentCompilerSpec extends BridgeProviderSpecification { val scala21111 = "2.11.11" val scala2121 = "2.12.1" val scala2122 = "2.12.2" + val scala2123 = "2.12.3" val logger = ConsoleLogger() it should "compile the bridge for Scala 2.10.5 and 2.10.6" in { @@ -25,5 +26,6 @@ class ZincComponentCompilerSpec extends BridgeProviderSpecification { it should "compile the bridge for Scala 2.12.2" in { IO.withTemporaryDirectory(t => getCompilerBridge(t, logger, scala2121) should exist) IO.withTemporaryDirectory(t => getCompilerBridge(t, logger, scala2122) should exist) + IO.withTemporaryDirectory(t => getCompilerBridge(t, logger, scala2123) should exist) } }