[java-idp-oidc] branch main updated: Fix ambiguous method call affecting use on 5.2.x
Codeberg
noreply at shibboleth.net
Thu May 7 16:55:33 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository java-idp-oidc.
View the commit online:
https://codeberg.org/Shibboleth/java-idp-oidc/commit/996c0ba81291b7041ddf26713f39881ceecf2429
The following commit(s) were added to refs/heads/main by this push:
new 996c0ba8 Fix ambiguous method call affecting use on 5.2.x
996c0ba8 is described below
commit 996c0ba81291b7041ddf26713f39881ceecf2429
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Thu May 7 12:55:23 2026 -0400
Fix ambiguous method call affecting use on 5.2.x
---
.../op/profile/logic/AttributeResolutionSubjectLookupFunctionTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/logic/AttributeResolutionSubjectLookupFunctionTest.java b/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/logic/AttributeResolutionSubjectLookupFunctionTest.java
index 2db5fc8a..bbb422d1 100644
--- a/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/logic/AttributeResolutionSubjectLookupFunctionTest.java
+++ b/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/logic/AttributeResolutionSubjectLookupFunctionTest.java
@@ -165,7 +165,7 @@ public class AttributeResolutionSubjectLookupFunctionTest extends OpenSAMLInitBa
*/
@Test
public void testNoAttributes() {
- prc.ensureSubcontext(RelyingPartyContext.class).ensureSubcontext(AttributeContext.class).setIdPAttributes(null);
+ prc.ensureSubcontext(RelyingPartyContext.class).ensureSubcontext(AttributeContext.class).setIdPAttributes((Collection<IdPAttribute>) null);
Assert.assertNull(lookup.apply(prc));
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list