[jboss-cvs] JBossAS SVN: r112269 - branches/JBPAPP_5_1/testsuite/src/main/org/jboss/test/scripts/test.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Wed Sep 28 09:33:13 EDT 2011
Author: mbenitez
Date: 2011-09-28 09:33:13 -0400 (Wed, 28 Sep 2011)
New Revision: 112269
Modified:
branches/JBPAPP_5_1/testsuite/src/main/org/jboss/test/scripts/test/PasswordToolTestCase.java
Log:
Add missing ) to PasswordToolTestCase.java
Modified: branches/JBPAPP_5_1/testsuite/src/main/org/jboss/test/scripts/test/PasswordToolTestCase.java
===================================================================
--- branches/JBPAPP_5_1/testsuite/src/main/org/jboss/test/scripts/test/PasswordToolTestCase.java 2011-09-27 21:10:09 UTC (rev 112268)
+++ branches/JBPAPP_5_1/testsuite/src/main/org/jboss/test/scripts/test/PasswordToolTestCase.java 2011-09-28 13:33:13 UTC (rev 112269)
@@ -408,7 +408,7 @@
*/
private Process startPasswordTool(String stdin) throws IOException
{
- System.out.println("--------- " + stdin + " --------- ";
+ System.out.println("--------- " + stdin + " --------- ");
Process p = Runtime.getRuntime().exec(isWindows() ? new String[] { "cmd", "/c", "password_tool" } : new String[] { WORKING_DIR + "/password_tool.sh" }, null, WORKING_DIR);
OutputStream stdinStream = p.getOutputStream();
stdinStream.write(stdin.getBytes());
More information about the jboss-cvs-commits
mailing list