Skip to content

Commit b2f0bdb

Browse files
committed
Polishing
Issue: SPR-14470
1 parent d98bd34 commit b2f0bdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-webmvc/src/test/java/org/springframework/web/servlet/mvc/method/annotation/RequestResponseBodyMethodProcessorTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public void resolveArgumentTypeVariable() throws Exception {
243243
@Test // SPR-14470
244244
public void resolveParameterizedWithTypeVariableArgument() throws Exception {
245245
Method method = MyParameterizedControllerWithList.class.getMethod("handleDto", List.class);
246-
HandlerMethod handlerMethod = new HandlerMethod(new MySimpleParameterizedController(), method);
246+
HandlerMethod handlerMethod = new HandlerMethod(new MySimpleParameterizedControllerWithList(), method);
247247
MethodParameter methodParam = handlerMethod.getMethodParameters()[0];
248248

249249
String content = "[{\"name\" : \"Jad\"}, {\"name\" : \"Robert\"}]";

0 commit comments

Comments
 (0)