Skip to content

Commit

Permalink
Release 0.5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Aug 23, 2024
1 parent a4adcd7 commit ad33862
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
}
Expand Down

0 comments on commit ad33862

Please sign in to comment.