diff --git a/build.sbt b/build.sbt index 270ce36..28391f2 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "spice" ThisBuild / organization := "com.outr" -ThisBuild / version := "0.5.12-SNAPSHOT1" +ThisBuild / version := "0.5.12" val scala213: String = "2.13.14" diff --git a/server/implementation/undertow/src/test/scala/spec/UndertowServerSpec.scala b/server/implementation/undertow/src/test/scala/spec/UndertowServerSpec.scala index e490a08..fdbc060 100644 --- a/server/implementation/undertow/src/test/scala/spec/UndertowServerSpec.scala +++ b/server/implementation/undertow/src/test/scala/spec/UndertowServerSpec.scala @@ -118,11 +118,11 @@ class UndertowServerSpec extends AsyncWordSpec with AsyncIOSpec with Matchers { testServer.config .clearListeners() .addListeners(HttpServerListener(port = None)) - .addListeners(HttpServerListener(port = Some(8181))) + .addListeners(HttpServerListener(port = Some(8282))) testServer.start().flatMap { _ => testServer.config.listeners().head.port should not be None - testServer.config.listeners().head.port should not be Some(8181) - testServer.config.listeners().last.port should be(Some(8181)) + testServer.config.listeners().head.port should not be Some(8282) + testServer.config.listeners().last.port should be(Some(8282)) testServer.stop() } }