mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Consistent IOException spelling in class/method names
This commit is contained in:
+2
-2
@@ -172,7 +172,7 @@ class ExceptionHandlerExceptionResolverTests {
|
||||
@Test
|
||||
void resolveNoExceptionHandlerForException() throws NoSuchMethodException {
|
||||
Exception npe = new NullPointerException();
|
||||
HandlerMethod handlerMethod = new HandlerMethod(new IoExceptionController(), "handle");
|
||||
HandlerMethod handlerMethod = new HandlerMethod(new IOExceptionController(), "handle");
|
||||
this.resolver.afterPropertiesSet();
|
||||
ModelAndView mav = this.resolver.resolveException(this.request, this.response, handlerMethod, npe);
|
||||
|
||||
@@ -540,7 +540,7 @@ class ExceptionHandlerExceptionResolverTests {
|
||||
|
||||
|
||||
@Controller
|
||||
static class IoExceptionController {
|
||||
static class IOExceptionController {
|
||||
|
||||
public void handle() {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user