From a46d1416ee1eb37b69c92d6a35008cd8352221cc Mon Sep 17 00:00:00 2001 From: Madhura Bhave Date: Fri, 29 Dec 2017 13:16:26 -0800 Subject: [PATCH] Reinstate required parameter --- .../web/reactive/error/DefaultErrorAttributesTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/error/DefaultErrorAttributesTests.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/error/DefaultErrorAttributesTests.java index 1e4ec1661a..2f37dcf922 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/error/DefaultErrorAttributesTests.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/error/DefaultErrorAttributesTests.java @@ -176,7 +176,7 @@ public class DefaultErrorAttributesTests { return ServerRequest.create(exchange, this.readers); } - public int method() { + public int method(String firstParam) { return 42; }