| Index: tests/compiler/dart2js/space_test.dart
|
| diff --git a/tests/compiler/dart2js/space_test.dart b/tests/compiler/dart2js/space_test.dart
|
| index b721952ad0a84f60b894a4010ce117d19a6a03db..9146f27cd72898cd2ebe7ac64eebdd3c640ea51d 100644
|
| --- a/tests/compiler/dart2js/space_test.dart
|
| +++ b/tests/compiler/dart2js/space_test.dart
|
| @@ -3,8 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| import 'dart:io';
|
| -import 'package:compiler/src/dart2js.dart'
|
| - as dart2js;
|
| +import 'package:compiler/src/dart2js.dart' as dart2js;
|
| import 'package:compiler/src/commandline_options.dart';
|
|
|
| main() {
|
| @@ -13,7 +12,9 @@ main() {
|
| Uri libraryRoot = script.resolve('../../../sdk/');
|
| Directory.current = script.resolve("path with spaces").toFilePath();
|
|
|
| - return dart2js.main(["--library-root=${libraryRoot.toFilePath()}",
|
| - Flags.analyzeOnly,
|
| - "file with spaces.dart"]);
|
| + return dart2js.main([
|
| + "--library-root=${libraryRoot.toFilePath()}",
|
| + Flags.analyzeOnly,
|
| + "file with spaces.dart"
|
| + ]);
|
| }
|
|
|