File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/src/main/java/org/springframework/security/test/web/servlet/setup Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public RequestPostProcessor beforeMockMvcCreated(ConfigurableMockMvcBuilder<?> b
71
71
WebApplicationContext context ) {
72
72
String securityBeanId = BeanIds .SPRING_SECURITY_FILTER_CHAIN ;
73
73
if (getSpringSecurityFilterChain () == null && context .containsBean (securityBeanId )) {
74
- setSpringSecurityFitlerChain (context .getBean (securityBeanId , Filter .class ));
74
+ setSpringSecurityFilterChain (context .getBean (securityBeanId , Filter .class ));
75
75
}
76
76
Assert .state (getSpringSecurityFilterChain () != null ,
77
77
() -> "springSecurityFilterChain cannot be null. Ensure a Bean with the name " + securityBeanId
@@ -81,7 +81,7 @@ public RequestPostProcessor beforeMockMvcCreated(ConfigurableMockMvcBuilder<?> b
81
81
return testSecurityContext ();
82
82
}
83
83
84
- private void setSpringSecurityFitlerChain (Filter filter ) {
84
+ private void setSpringSecurityFilterChain (Filter filter ) {
85
85
this .delegateFilter .setDelegate (filter );
86
86
}
87
87
You can’t perform that action at this time.
0 commit comments