We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6cd7d0 commit a777cdeCopy full SHA for a777cde
core/src/test/java/com/onelogin/saml2/test/logout/LogoutResponseTest.java
@@ -758,8 +758,8 @@ public void testPostProcessXml() throws Exception {
758
Saml2Settings settings = new SettingsBuilder().fromFile("config/config.min.properties").build();
759
LogoutResponse logoutResponse = new LogoutResponse(settings, null) {
760
@Override
761
- protected String postProcessXml(String authRequestXml, Saml2Settings sett) {
762
- assertEquals(authRequestXml, super.postProcessXml(authRequestXml, sett));
+ protected String postProcessXml(String logoutResponseXml, Saml2Settings sett) {
+ assertEquals(logoutResponseXml, super.postProcessXml(logoutResponseXml, sett));
763
assertSame(settings, sett);
764
return "changed";
765
}
0 commit comments