Merge branch '1.5.x'

This commit is contained in:
Andy Wilkinson 2017-05-23 22:18:35 +01:00
commit db9ec87b14
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ import org.springframework.boot.web.servlet.server.AbstractServletWebServerFacto
import org.springframework.http.HttpHeaders; import org.springframework.http.HttpHeaders;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
import static org.hamcrest.CoreMatchers.instanceOf; import static org.hamcrest.CoreMatchers.isA;
import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.inOrder; import static org.mockito.Mockito.inOrder;
import static org.mockito.Mockito.mock; import static org.mockito.Mockito.mock;
@ -292,7 +292,7 @@ public class JettyServletWebServerFactoryTests
} }
}); });
this.thrown.expectCause(instanceOf(IllegalStateException.class)); this.thrown.expectCause(isA(IllegalStateException.class));
factory.getWebServer().start(); factory.getWebServer().start();
} }