Index: compiler/javatests/com/google/dart/compiler/end2end/End2EndTestCase.java |
diff --git a/compiler/javatests/com/google/dart/compiler/end2end/End2EndTestCase.java b/compiler/javatests/com/google/dart/compiler/end2end/End2EndTestCase.java |
index c8f68d121c2c85683206cd0d85b81984e9ca91b1..a6efac3579fbe2ffd26406cbf17b4df990ad21aa 100644 |
--- a/compiler/javatests/com/google/dart/compiler/end2end/End2EndTestCase.java |
+++ b/compiler/javatests/com/google/dart/compiler/end2end/End2EndTestCase.java |
@@ -89,13 +89,8 @@ public abstract class End2EndTestCase extends CompilerTestCase { |
DartRunnerOptions verboseOptions = new CommandLineOptions.DartRunnerOptions(); |
verboseOptions.setVerbose(true); |
try { |
- DartRunner.compileAndRunApp(app, |
- verboseOptions, |
- config, |
- listener, |
- args, |
- System.out, |
- System.err); |
+ DartRunner.compileAndRunApp(app, verboseOptions, config, listener, args, |
+ System.out, System.err); |
} catch (RhinoException e) { |
// TODO(jgw): This is a hack to dump the translated source when something goes wrong. It can |
// be removed as soon as we have a source map we can use to provide source-level errors. |