| Index: tests/compiler/dart2js/zero_termination_test.dart
|
| diff --git a/tests/compiler/dart2js/zero_termination_test.dart b/tests/compiler/dart2js/zero_termination_test.dart
|
| index 501fb42d8d14d748ac2741827d326193b497cb28..fbfeab756a0d2f6ddd1743c8115e3901b432c878 100644
|
| --- a/tests/compiler/dart2js/zero_termination_test.dart
|
| +++ b/tests/compiler/dart2js/zero_termination_test.dart
|
| @@ -67,7 +67,8 @@ void check(ProcessResult result) {
|
| }
|
|
|
| Future testFile() async {
|
| - String inFilePath = pathOfData.resolve('one_line_dart_program.dart').path;
|
| + String inFilePath =
|
| + pathOfData.resolve('data/one_line_dart_program.dart').path;
|
| List<String> args = [inFilePath, "--out=" + outFilePath];
|
|
|
| await cleanup();
|
| @@ -77,7 +78,7 @@ Future testFile() async {
|
|
|
| Future serverRunning(HttpServer server) async {
|
| int port = server.port;
|
| - String inFilePath = "http://127.0.0.1:$port/one_line_dart_program.dart";
|
| + String inFilePath = "http://127.0.0.1:$port/data/one_line_dart_program.dart";
|
| List<String> args = [inFilePath, "--out=" + outFilePath];
|
|
|
| server.listen(handleRequest);
|
|
|