Fixes test
diff --git a/core/src/test/java/com/opensymphony/xwork2/config/impl/ActionConfigMatcherTest.java b/core/src/test/java/com/opensymphony/xwork2/config/impl/ActionConfigMatcherTest.java
index 6eb9f27..7957cf9 100644
--- a/core/src/test/java/com/opensymphony/xwork2/config/impl/ActionConfigMatcherTest.java
+++ b/core/src/test/java/com/opensymphony/xwork2/config/impl/ActionConfigMatcherTest.java
@@ -156,18 +156,21 @@
                     .build())
                 .addInterceptor(new InterceptorMapping(null, null))
                 .addResultConfig(new ResultConfig.Builder("success{1}", "foo.{2}").addParams(params).build())
+                .setStrictMethodInvocation(false)
                 .build();
         map.put("foo/*/*", config);
         
         config = new ActionConfig.Builder("package-{1}", "bar/*/**", "bar")
                 .methodName("do{1}_{1}")
                 .addParam("first", "{2}")
+                .setStrictMethodInvocation(false)
                 .build();
         
         map.put("bar/*/**", config);
 
         config = new ActionConfig.Builder("package", "eventAdd!*", "bar")
                 .methodName("{1}")
+                .setStrictMethodInvocation(false)
                 .build();
 
         map.put("addEvent!*", config);