diff --git a/akka-http-core/src/test/scala/akka/http/impl/engine/client/TlsEndpointVerificationSpec.scala b/akka-http-core/src/test/scala/akka/http/impl/engine/client/TlsEndpointVerificationSpec.scala index 63fdc36703..c0a5aab683 100644 --- a/akka-http-core/src/test/scala/akka/http/impl/engine/client/TlsEndpointVerificationSpec.scala +++ b/akka-http-core/src/test/scala/akka/http/impl/engine/client/TlsEndpointVerificationSpec.scala @@ -40,7 +40,7 @@ class TlsEndpointVerificationSpec extends AkkaSpec(""" "accept certificates signed by known CA" in { val pipe = pipeline(ExampleHttpContexts.exampleClientContext, hostname = "akka.example.org") // example context does include custom CA - whenReady(pipe(HttpRequest(uri = "https://akka.example.org/")), timeout) { response ⇒ + whenReady(pipe(HttpRequest(uri = "https://akka.example.org:8080/")), timeout) { response ⇒ response.status shouldEqual StatusCodes.OK } }