Attempt to fix Windows CI

This commit is contained in:
Phillip Webb 2014-06-25 16:32:16 -07:00
parent 6311ae191f
commit e383d13ad9
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ public abstract class AbstractEmbeddedServletContainerFactoryTests {
this.container.stop();
this.thrown.expect(IOException.class);
String response = getResponse(getLocalUrl("/hello"));
throw new RuntimeException(response);
throw new RuntimeException(this.container.getPort() + " " + response);
}
@Test