fixed https fragility
Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
parent
a7b5430f96
commit
666d1cfd0b
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue