fixed https fragility

Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
Greg Wilkins 2019-06-19 12:32:14 +02:00
parent a7b5430f96
commit 666d1cfd0b
1 changed files with 1 additions and 1 deletions

View File

@ -1073,7 +1073,7 @@ public abstract class RFC2616BaseTest
specId = "10.3 Redirection HTTP/1.0 - basic";
assertThat(specId, response.getStatus(), is(HttpStatus.FOUND_302));
assertEquals("http://myhost:1234/tests/", response.get("Location"),specId);
assertEquals(server.getScheme() + "://myhost:1234/tests/", response.get("Location"),specId);
}
/**