Skip to content

Commit

Permalink
Fix for Unzip exception
Browse files Browse the repository at this point in the history
  • Loading branch information
jsight committed Jun 5, 2014
1 parent 21551c4 commit 038e957
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void testRunWindup() throws Exception
Assert.assertNotNull(processor);
Assert.assertNotNull(processor.toString());

String inputPath = "../../../test-files/Windup1x-javaee-example.war";
String inputPath = "../../test-files/Windup1x-javaee-example.war";
WindupConfigurationModel windupCfg = graphContext.getFramed().addVertex(null, WindupConfigurationModel.class);
windupCfg.setInputPath(inputPath);
windupCfg.setSourceMode(false);
Expand All @@ -76,7 +76,7 @@ public void testRunWindupSourceMode() throws Exception
Assert.assertNotNull(processor);
Assert.assertNotNull(processor.toString());

String inputPath = "../../../test-files/src_example";
String inputPath = "../../test-files/src_example";
WindupConfigurationModel windupCfg = graphContext.getFramed().addVertex(null, WindupConfigurationModel.class);
windupCfg.setInputPath(inputPath);
windupCfg.setSourceMode(true);
Expand Down

0 comments on commit 038e957

Please sign in to comment.