| Index: tests/compiler/dart2js/use_strict_test.dart
|
| diff --git a/tests/compiler/dart2js/use_strict_test.dart b/tests/compiler/dart2js/use_strict_test.dart
|
| index 0461fb75b020d4126aecbfd50a9ad79896af4cd9..4e86dbba7f4c231c558ff490ac38a9f548944dc3 100644
|
| --- a/tests/compiler/dart2js/use_strict_test.dart
|
| +++ b/tests/compiler/dart2js/use_strict_test.dart
|
| @@ -3,6 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| import 'package:async_helper/async_helper.dart';
|
| +import 'package:compiler/compiler_new.dart';
|
| import 'package:expect/expect.dart';
|
| import 'memory_compiler.dart';
|
|
|
| @@ -50,7 +51,7 @@ main() {
|
| asyncTest(() async {
|
| await runCompiler(
|
| memorySourceFiles: MEMORY_SOURCE_FILES, outputProvider: collector);
|
| - String jsOutput = collector.getOutput('', 'js');
|
| + String jsOutput = collector.getOutput('', OutputType.js);
|
|
|
| // Skip comments.
|
| List<String> lines = jsOutput.split("\n");
|
|
|