Commit 03b28127 authored by Phillip Webb's avatar Phillip Webb

Trying to break windows build

parent d4ad67af
...@@ -110,8 +110,9 @@ public abstract class AbstractEmbeddedServletContainerFactoryTests { ...@@ -110,8 +110,9 @@ public abstract class AbstractEmbeddedServletContainerFactoryTests {
.getEmbeddedServletContainer(exampleServletRegistration()); .getEmbeddedServletContainer(exampleServletRegistration());
this.container.start(); this.container.start();
this.container.stop(); this.container.stop();
this.thrown.expect(Exception.class); // this.thrown.expect(Exception.class);
getResponse(getLocalUrl("/hello")); String response = getResponse(getLocalUrl("/hello"));
throw new RuntimeException(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