| Index: tests/compiler/dart2js/type_inference7_test.dart
|
| diff --git a/tests/compiler/dart2js/type_inference7_test.dart b/tests/compiler/dart2js/type_inference7_test.dart
|
| index 64b8cbc9e4693095879030ff4484c0e3240de6dd..072d42d7aed58f9bc408b1a4bba7dd016f4c89e5 100644
|
| --- a/tests/compiler/dart2js/type_inference7_test.dart
|
| +++ b/tests/compiler/dart2js/type_inference7_test.dart
|
| @@ -22,7 +22,7 @@ Future runTest() async {
|
| {
|
| // Assertions enabled:
|
| var compiler = compilerFor(TEST, uri, enableUserAssertions: true);
|
| - await compiler.runCompiler(uri);
|
| + await compiler.run(uri);
|
| var typesTask = compiler.typesTask;
|
| var typesInferrer = typesTask.typesInferrer;
|
| var foo = findElement(compiler, "foo");
|
| @@ -51,7 +51,7 @@ Future runTest() async {
|
| {
|
| // Assertions disabled:
|
| var compiler = compilerFor(TEST, uri, enableUserAssertions: false);
|
| - await compiler.runCompiler(uri);
|
| + await compiler.run(uri);
|
| var typesTask = compiler.typesTask;
|
| var typesInferrer = typesTask.typesInferrer;
|
| var foo = findElement(compiler, "foo");
|
|
|