From c9fd44fbd552a8b3474fe846be2d2834453133ef Mon Sep 17 00:00:00 2001 From: Lukasz Lenart Date: Fri, 2 May 2014 14:50:34 +0200 Subject: [PATCH] Overrides pattern exclusion initialisation to allow test to pass --- .../xwork2/interceptor/ParametersInterceptorTest.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xwork-core/src/test/java/com/opensymphony/xwork2/interceptor/ParametersInterceptorTest.java b/xwork-core/src/test/java/com/opensymphony/xwork2/interceptor/ParametersInterceptorTest.java index 44146666d..7084924a6 100644 --- a/xwork-core/src/test/java/com/opensymphony/xwork2/interceptor/ParametersInterceptorTest.java +++ b/xwork-core/src/test/java/com/opensymphony/xwork2/interceptor/ParametersInterceptorTest.java @@ -183,6 +183,10 @@ public class ParametersInterceptorTest extends XWorkTestCase { return result; } + @Override + protected void initializeHardCodedExcludePatterns() { + excludeParams = new HashSet(); + } }; container.inject(pi);