Trying to break windows build

This commit is contained in:
Phillip Webb 2014-06-25 16:20:39 -07:00
parent d4ad67af44
commit 03b281278a
1 changed files with 3 additions and 2 deletions

View File

@ -110,8 +110,9 @@ public abstract class AbstractEmbeddedServletContainerFactoryTests {
.getEmbeddedServletContainer(exampleServletRegistration());
this.container.start();
this.container.stop();
this.thrown.expect(Exception.class);
getResponse(getLocalUrl("/hello"));
// this.thrown.expect(Exception.class);
String response = getResponse(getLocalUrl("/hello"));
throw new RuntimeException(response);
}
@Test