Skip to content

Commit

Permalink
[FORGE-799] RunPluginTest fix for directories containing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatloka committed Feb 22, 2013
1 parent e87d699 commit 6616fd3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void testRun() throws Exception
{
File file = new File("src/test/resources/org/jboss/forge/shell/test/plugins/builtin/RunPluginTest.fsh");
Assert.assertTrue("Script file does not exist", file.exists());
getShell().execute("run "+file.getAbsolutePath());
getShell().execute("run \"" + file.getAbsolutePath() + "\"");
}

}

0 comments on commit 6616fd3

Please sign in to comment.