Browse Source

Fix location url in test

See gh-6956
pull/7002/head
Stephane Nicoll 10 years ago
parent
commit
fc5ab5685b
  1. 2
      spring-boot-samples/spring-boot-sample-hypermedia-jpa/src/test/java/sample/hypermedia/jpa/SampleHypermediaJpaApplicationIntegrationTests.java

2
spring-boot-samples/spring-boot-sample-hypermedia-jpa/src/test/java/sample/hypermedia/jpa/SampleHypermediaJpaApplicationIntegrationTests.java

@ -83,7 +83,7 @@ public class SampleHypermediaJpaApplicationIntegrationTests { @@ -83,7 +83,7 @@ public class SampleHypermediaJpaApplicationIntegrationTests {
public void browser() throws Exception {
MvcResult response = this.mockMvc.perform(get("/").accept(MediaType.TEXT_HTML))
.andExpect(status().isFound()).andReturn();
assertEquals("/browser/index.html#",
assertEquals("http://localhost/browser/index.html#/",
response.getResponse().getHeaders("location").get(0));
}

Loading…
Cancel
Save