[java-idp-integration-tests COMMIT] /trunk/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java

noreply at shibboleth.net noreply at shibboleth.net
Fri Jun 19 18:12:38 EDT 2015


Author: tzeller
Date: Fri Jun 19 18:12:38 2015
New Revision: 67

URL: http://svn.shibboleth.net/view/java-idp-integration-tests?rev=67&view=rev
Log:
Remove un-resolvable placeholder.

Modified:
    trunk/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java

Modified: trunk/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
URL: http://svn.shibboleth.net/view/java-idp-integration-tests/trunk/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java?rev=67&r1=66&r2=67&view=diff
==============================================================================
--- trunk/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java	(original)
+++ trunk/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java	Fri Jun 19 18:12:38 2015
@@ -185,7 +185,7 @@
         // Path to the project build directory.
         final Path buildPath = Paths.get(TEST_DISTRIBUTIONS_DIRECTORY);
         log.debug("Path to build directory '{}'", buildPath.toAbsolutePath());
-        Assert.assertTrue(buildPath.toAbsolutePath().toFile().exists(), "Path to build directory '{}' not found");
+        Assert.assertTrue(buildPath.toAbsolutePath().toFile().exists(), "Path to build directory not found");
 
         // Path to Jetty distribution
         try (DirectoryStream<Path> stream = Files.newDirectoryStream(buildPath, "*jetty-distribution-*")) {
@@ -198,7 +198,7 @@
         }
         log.debug("Path to jetty.home '{}'", pathToJettyHome.toAbsolutePath());
         Assert.assertNotNull(pathToJettyHome, "Path to jetty.home not found");
-        Assert.assertTrue(pathToJettyHome.toAbsolutePath().toFile().exists(), "Path to jetty.home '{}' not found");
+        Assert.assertTrue(pathToJettyHome.toAbsolutePath().toFile().exists(), "Path to jetty.home not found");
 
         // Path to idp.home
         try (DirectoryStream<Path> stream = Files.newDirectoryStream(buildPath, "*shibboleth-identity-provider-*")) {
@@ -211,7 +211,7 @@
         }
         log.debug("Path to idp.home '{}'", pathToIdPHome.toAbsolutePath());
         Assert.assertNotNull(pathToIdPHome, "Path to idp.home not found");
-        Assert.assertTrue(pathToIdPHome.toAbsolutePath().toFile().exists(), "Path to idp.home '{}' not found");
+        Assert.assertTrue(pathToIdPHome.toAbsolutePath().toFile().exists(), "Path to idp.home not found");
 
         // Set idp.home system property
         System.setProperty("idp.home", pathToIdPHome.toAbsolutePath().toString());
@@ -220,7 +220,7 @@
         pathToJettyBase = pathToIdPHome.resolve(Paths.get("jetty-base"));
         log.debug("Path to jetty.base '{}'", pathToJettyBase.toAbsolutePath());
         Assert.assertNotNull(pathToJettyBase, "Path to jetty.base not found");
-        Assert.assertTrue(pathToJettyBase.toAbsolutePath().toFile().exists(), "Path to jetty.base '{}' not found");
+        Assert.assertTrue(pathToJettyBase.toAbsolutePath().toFile().exists(), "Path to jetty.base not found");
 
         // Path to conf/idp.properties
         pathToIdPProperties = Paths.get(pathToIdPHome.toAbsolutePath().toString(), "conf", "idp.properties");



More information about the commits mailing list