Skip to content

Commit 6c320d0

Browse files
committed
Fix 1 pending wrong test
1 parent bb39ee4 commit 6c320d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

toolkit/src/test/java/com/onelogin/saml2/test/AuthTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -890,10 +890,11 @@ public void testOnlyRetrieveAssertionWithIDThatMatchesSignatureReference() throw
890890
when(request.getRequestURL()).thenReturn(new StringBuffer("http://localhost:8080/java-saml-jspsample/acs.jsp"));
891891

892892
Saml2Settings settings = new SettingsBuilder().fromFile("config/config.my.properties").build();
893+
Auth auth = new Auth(settings, request, response);
893894

894895
expectedEx.expect(ValidationError.class);
895896
expectedEx.expectMessage("SAML Response could not be processed");
896-
Auth auth = new Auth(settings, request, response);
897+
auth.processResponse();
897898
}
898899

899900
/**

0 commit comments

Comments
 (0)