diff --git a/plugins/groovy/testdata/groovy/refactoring/extractMethod/implicitReturn.test b/plugins/groovy/testdata/groovy/refactoring/extractMethod/implicitReturn.test index a0b43a7208fd..890a74d37d6b 100644 --- a/plugins/groovy/testdata/groovy/refactoring/extractMethod/implicitReturn.test +++ b/plugins/groovy/testdata/groovy/refactoring/extractMethod/implicitReturn.test @@ -3,7 +3,7 @@ def List getMethodArguments(def methodCall) { if (respondsTo(argumentsExpression, 'getExpressions')) { return [1, 2, 3] } - [] + [4] } ----- def List getMethodArguments(def methodCall) {