We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb39ee4 commit 6c320d0Copy full SHA for 6c320d0
toolkit/src/test/java/com/onelogin/saml2/test/AuthTest.java
@@ -890,10 +890,11 @@ public void testOnlyRetrieveAssertionWithIDThatMatchesSignatureReference() throw
890
when(request.getRequestURL()).thenReturn(new StringBuffer("http://localhost:8080/java-saml-jspsample/acs.jsp"));
891
892
Saml2Settings settings = new SettingsBuilder().fromFile("config/config.my.properties").build();
893
+ Auth auth = new Auth(settings, request, response);
894
895
expectedEx.expect(ValidationError.class);
896
expectedEx.expectMessage("SAML Response could not be processed");
- Auth auth = new Auth(settings, request, response);
897
+ auth.processResponse();
898
}
899
900
/**
0 commit comments