Commit e383d13a authored by Phillip Webb's avatar Phillip Webb

Attempt to fix Windows CI

parent 6311ae19
...@@ -112,7 +112,7 @@ public abstract class AbstractEmbeddedServletContainerFactoryTests { ...@@ -112,7 +112,7 @@ public abstract class AbstractEmbeddedServletContainerFactoryTests {
this.container.stop(); this.container.stop();
this.thrown.expect(IOException.class); this.thrown.expect(IOException.class);
String response = getResponse(getLocalUrl("/hello")); String response = getResponse(getLocalUrl("/hello"));
throw new RuntimeException(response); throw new RuntimeException(this.container.getPort() + " " + response);
} }
@Test @Test
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment