[java-identity-provider] branch main updated: Fix data file path.

Scott Cantor cantor.2 at osu.edu
Tue Sep 20 14:54:41 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=dde1496486e2bd1cf45a6e452d6dcc6a445701a9

The following commit(s) were added to refs/heads/main by this push:
     new dde149648 Fix data file path.
dde149648 is described below

commit dde1496486e2bd1cf45a6e452d6dcc6a445701a9
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Sep 20 10:54:38 2022 -0400

    Fix data file path.
---
 .../idp/authn/context/impl/SubjectDataConnectorParserTest.java        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/idp-authn-impl/src/test/java/net/shibboleth/idp/authn/context/impl/SubjectDataConnectorParserTest.java b/idp-authn-impl/src/test/java/net/shibboleth/idp/authn/context/impl/SubjectDataConnectorParserTest.java
index e8231be99..e8438f94c 100644
--- a/idp-authn-impl/src/test/java/net/shibboleth/idp/authn/context/impl/SubjectDataConnectorParserTest.java
+++ b/idp-authn-impl/src/test/java/net/shibboleth/idp/authn/context/impl/SubjectDataConnectorParserTest.java
@@ -33,7 +33,7 @@ import net.shibboleth.idp.attribute.resolver.spring.dc.impl.SubjectDataConnector
 public class SubjectDataConnectorParserTest extends BaseAttributeDefinitionParserTest {
     
     @Test public void simple() {
-        final ContextDerivedDataConnector connector = getDataConnector("resolver/subjectAttributes.xml", ContextDerivedDataConnector.class);
+        final ContextDerivedDataConnector connector = getDataConnector("subjectAttributes.xml", ContextDerivedDataConnector.class);
 
         assertEquals(connector.getExportAttributes().size(), 2);
         assertTrue(connector.getExportAttributes().contains("foo"));
@@ -46,7 +46,7 @@ public class SubjectDataConnectorParserTest extends BaseAttributeDefinitionParse
     }
     
     @Test(expectedExceptions = {BeanCreationException.class}) public void emptyNoResultIsError() {
-        getDataConnector("resolver/subjectAttributesNull.xml", ContextDerivedDataConnector.class);
+        getDataConnector("subjectAttributesNull.xml", ContextDerivedDataConnector.class);
     }
     
 }
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list