You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2014/11/15 19:50:11 UTC

[2/3] incubator-brooklyn git commit: fix hardcoded parameter in test

fix hardcoded parameter in test


Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/a4712e7e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/a4712e7e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/a4712e7e

Branch: refs/heads/master
Commit: a4712e7ecdf913f7dcde2e09c627b6af8b774c9d
Parents: 5d97086
Author: Alex Heneveld <al...@cloudsoftcorp.com>
Authored: Sat Nov 15 18:49:13 2014 +0000
Committer: Alex Heneveld <al...@cloudsoftcorp.com>
Committed: Sat Nov 15 18:49:13 2014 +0000

----------------------------------------------------------------------
 .../entity/webapp/AbstractWebAppFixtureIntegrationTest.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/a4712e7e/software/webapp/src/test/java/brooklyn/entity/webapp/AbstractWebAppFixtureIntegrationTest.java
----------------------------------------------------------------------
diff --git a/software/webapp/src/test/java/brooklyn/entity/webapp/AbstractWebAppFixtureIntegrationTest.java b/software/webapp/src/test/java/brooklyn/entity/webapp/AbstractWebAppFixtureIntegrationTest.java
index cbfb436..8704379 100644
--- a/software/webapp/src/test/java/brooklyn/entity/webapp/AbstractWebAppFixtureIntegrationTest.java
+++ b/software/webapp/src/test/java/brooklyn/entity/webapp/AbstractWebAppFixtureIntegrationTest.java
@@ -161,7 +161,7 @@ public abstract class AbstractWebAppFixtureIntegrationTest {
         File file = File.createTempFile("test", "keystore");
         FileOutputStream fos = new FileOutputStream(file);
         try {
-            ks.store(fos, "mypass".toCharArray());
+            ks.store(fos, password.toCharArray());
             return file;
         } finally {
             Streams.closeQuietly(fos);