Skip to content

Commit a35ce77

Browse files
committed
Add missing PowerMockIgnore annotation
WebSecurityConfigurerAdapterPowermockTests needs to exclude javax.xml.transform.* from Powermock configuration.
1 parent ba21c15 commit a35ce77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/src/test/java/org/springframework/security/config/annotation/web/WebSecurityConfigurerAdapterPowermockTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
*/
6060
@RunWith(PowerMockRunner.class)
6161
@PrepareForTest({ SpringFactoriesLoader.class, WebAsyncManager.class })
62-
@PowerMockIgnore({ "org.w3c.dom.*", "org.xml.sax.*", "org.apache.xerces.*", "javax.xml.parsers.*" })
62+
@PowerMockIgnore({ "org.w3c.dom.*", "org.xml.sax.*", "org.apache.xerces.*", "javax.xml.parsers.*", "javax.xml.transform.*" })
6363
public class WebSecurityConfigurerAdapterPowermockTests {
6464
ConfigurableWebApplicationContext context;
6565

0 commit comments

Comments
 (0)