[java-identity-provider] branch main updated: Fix test.
Scott Cantor
cantor.2 at osu.edu
Thu Oct 13 17:10:26 UTC 2022
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=08a45562306eba9d9e6a4b1e5752620383961c66
The following commit(s) were added to refs/heads/main by this push:
new 08a455623 Fix test.
08a455623 is described below
commit 08a45562306eba9d9e6a4b1e5752620383961c66
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Oct 13 13:10:23 2022 -0400
Fix test.
---
.../idp/ui/csrf/impl/CSRFTokenFlowExecutionListenerTest.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/idp-ui/src/test/java/net/shibboleth/idp/ui/csrf/impl/CSRFTokenFlowExecutionListenerTest.java b/idp-ui/src/test/java/net/shibboleth/idp/ui/csrf/impl/CSRFTokenFlowExecutionListenerTest.java
index 7f32c97de..968a3db8e 100644
--- a/idp-ui/src/test/java/net/shibboleth/idp/ui/csrf/impl/CSRFTokenFlowExecutionListenerTest.java
+++ b/idp-ui/src/test/java/net/shibboleth/idp/ui/csrf/impl/CSRFTokenFlowExecutionListenerTest.java
@@ -55,10 +55,11 @@ public class CSRFTokenFlowExecutionListenerTest extends BaseCSRFTest{
private CSRFTokenFlowExecutionListener listener;
- @BeforeMethod public void setup() {
+ @BeforeMethod public void setup() throws ComponentInitializationException {
CSRFTokenManager manager = new CSRFTokenManager();
manager.setCsrfParameterName(CSRF_PARAM_NAME);
+ manager.initialize();
listener = new CSRFTokenFlowExecutionListener();
listener.setCsrfTokenManager(manager);
listener.setEnabled(true);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list