=htc #18641 request must be made to the right port

This commit is contained in:
Konrad Malawski 2015-10-05 12:17:45 +02:00
parent eee21ac618
commit ca4a4fe273

View file

@ -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
}
}