From ca4a4fe2737a1b736bdddec8e4dc99d9d6bc5b6c Mon Sep 17 00:00:00 2001 From: Konrad Malawski Date: Mon, 5 Oct 2015 12:17:45 +0200 Subject: [PATCH] =htc #18641 request must be made to the right port --- .../http/impl/engine/client/TlsEndpointVerificationSpec.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }