Don't check exit code in Ant tests

It's already checked in the build log in each test
This commit is contained in:
Alexander Udalov
2015-06-03 13:48:19 +03:00
parent 89408f45bb
commit 968d362b77
3 changed files with 13 additions and 22 deletions
@@ -48,7 +48,7 @@ public class AntTaskJsTest extends AntTaskBaseTest {
}
private void doJsAntTest(String... jsFiles) throws Exception {
doAntTest(SUCCESSFUL);
doAntTest();
List<String> fileNames = new ArrayList<String>(Arrays.asList(jsFiles));
fileNames.add(JS_OUT_FILE);
@@ -179,12 +179,12 @@ public class AntTaskJsTest extends AntTaskBaseTest {
@Test
public void noSrcParam() throws Exception {
doAntTest(FAILED);
doAntTest();
}
@Test
public void noOutputParam() throws Exception {
doAntTest(FAILED);
doAntTest();
}
@Test