[java-identity-provider] branch main updated: Fix tests with invalid login flow IDs.
Scott Cantor
cantor.2 at osu.edu
Fri Mar 21 17:43:54 UTC 2025
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=7a0eba2dd21bcf0c0649eceed231c1a8b54b6b62
The following commit(s) were added to refs/heads/main by this push:
new 7a0eba2dd Fix tests with invalid login flow IDs.
7a0eba2dd is described below
commit 7a0eba2dd21bcf0c0649eceed231c1a8b54b6b62
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Mar 21 13:43:51 2025 -0400
Fix tests with invalid login flow IDs.
---
.../saml1/profile/impl/AddAuthenticationStatementToAssertionTest.java | 1 +
.../idp/saml/saml2/profile/impl/AddAuthnStatementToAssertionTest.java | 1 +
2 files changed, 2 insertions(+)
diff --git a/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml1/profile/impl/AddAuthenticationStatementToAssertionTest.java b/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml1/profile/impl/AddAuthenticationStatementToAssertionTest.java
index f569fa841..2fbbc3c4b 100644
--- a/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml1/profile/impl/AddAuthenticationStatementToAssertionTest.java
+++ b/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml1/profile/impl/AddAuthenticationStatementToAssertionTest.java
@@ -144,6 +144,7 @@ public class AddAuthenticationStatementToAssertionTest extends OpenSAMLInitBaseT
final AuthenticationFlowDescriptor fd = new AuthenticationFlowDescriptor();
fd.setId("Test");
+ fd.setFlowId("authn/Test");
fd.setResultSerializer(serializer);
fd.initialize();
diff --git a/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/impl/AddAuthnStatementToAssertionTest.java b/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/impl/AddAuthnStatementToAssertionTest.java
index dde51d816..7d8bfd096 100644
--- a/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/impl/AddAuthnStatementToAssertionTest.java
+++ b/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/saml2/profile/impl/AddAuthnStatementToAssertionTest.java
@@ -129,6 +129,7 @@ public class AddAuthnStatementToAssertionTest extends OpenSAMLInitBaseTestCase {
final AuthenticationFlowDescriptor fd = new AuthenticationFlowDescriptor();
fd.setId("Test");
+ fd.setFlowId("authn/Test");
fd.setResultSerializer(serializer);
fd.initialize();
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list