[java-idp-integration-tests] 02/02: Fix broken regex

Tom Zeller tzeller at dragonacea.biz
Fri Aug 12 14:01:26 EDT 2016


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

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

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

commit d0a6310778fa9800c538cb48db7b746d2e8b7191
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Fri Aug 12 12:25:20 2016 -0500

    Fix broken regex
---
 src/test/java/net/shibboleth/idp/test/TomcatServerProcess.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/net/shibboleth/idp/test/TomcatServerProcess.java b/src/test/java/net/shibboleth/idp/test/TomcatServerProcess.java
index 07b6d10..075ae6e 100644
--- a/src/test/java/net/shibboleth/idp/test/TomcatServerProcess.java
+++ b/src/test/java/net/shibboleth/idp/test/TomcatServerProcess.java
@@ -104,7 +104,7 @@ public class TomcatServerProcess extends AbstractServerProcess {
 
         final Path pathToCatalinaProp = getServletContainerBasePath().resolve(Paths.get("conf", "catalina.properties"));
         try {
-            BaseIntegrationTest.replaceFile(pathToCatalinaProp, "tomcat.shutdown.port=.*$",
+            BaseIntegrationTest.replaceFile(pathToCatalinaProp, "tomcat.shutdown.port=.*",
                     "tomcat.shutdown.port=" + Integer.toString(shutdownPort));
         } catch (IOException e) {
             log.error("Unable to replace file '{}'", pathToCatalinaProp, e);

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


More information about the commits mailing list