[java-idp-integration-tests] 06/07: Fix path to attribute-resolver-ldap.xml for IdP V4

Tom Zeller tzeller at dragonacea.biz
Wed May 5 20:46:44 UTC 2021


This is an automated email from the git hooks/post-receive script.

tzeller pushed a commit to branch main
in repository java-idp-integration-tests.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-integration-tests.git;a=commit;h=eb78e3db3e6773e2f55cdffef93011f7fbdb4144

commit eb78e3db3e6773e2f55cdffef93011f7fbdb4144
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Wed May 5 15:11:16 2021 -0500

    Fix path to attribute-resolver-ldap.xml for IdP V4
---
 src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
index 23ac2ba..1a69fdd 100644
--- a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
+++ b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
@@ -1276,7 +1276,7 @@ public abstract class BaseIntegrationTest
     public void enableAttributeResolverLDAP() throws IOException {
         final Path pathToServicesXML = Paths.get("conf", "services.xml");
         final String oldText = "<value>%\\{idp.home\\}/conf/attribute-resolver.xml</value>";
-        final String newText = "<value>%\\{idp.home\\}/conf/attribute-resolver-ldap.xml</value>";
+        final String newText = "<value>%\\{idp.home\\}/conf/examples/attribute-resolver-ldap.xml</value>";
         replaceIdPHomeFile(pathToServicesXML, oldText, newText);
     }
 
@@ -1286,7 +1286,7 @@ public abstract class BaseIntegrationTest
      * @throws IOException ...
      */
     public void enableAttributeResolverLDAPExportUid() throws IOException {
-        final Path pathToAttributeResolverLdapXML = Paths.get("conf", "attribute-resolver-ldap.xml");
+        final Path pathToAttributeResolverLdapXML = Paths.get("conf", "examples", "attribute-resolver-ldap.xml");
         
         final String oldText = "mail displayName sn givenName departmentNumber employeeNumber eduPersonEntitlement eduPersonAssurance";
         final String newText = "mail displayName sn givenName departmentNumber employeeNumber eduPersonEntitlement eduPersonAssurance uid";

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


More information about the commits mailing list