| Index: tests/compiler/dart2js/type_inference8_test.dart
|
| diff --git a/tests/compiler/dart2js/type_inference8_test.dart b/tests/compiler/dart2js/type_inference8_test.dart
|
| index 570e43a803d59dabf7492352d9c494a25a64eb96..001b1aab814872516a01093fdad7b47fc094340c 100644
|
| --- a/tests/compiler/dart2js/type_inference8_test.dart
|
| +++ b/tests/compiler/dart2js/type_inference8_test.dart
|
| @@ -33,7 +33,7 @@ main() {
|
| Future runTest1() {
|
| Uri uri = new Uri(scheme: 'source');
|
| var compiler = compilerFor(TEST1, uri);
|
| - return compiler.runCompiler(uri).then((_) {
|
| + return compiler.run(uri).then((_) {
|
| var typesTask = compiler.typesTask;
|
| var typesInferrer = typesTask.typesInferrer;
|
| var element = findElement(compiler, "foo");
|
| @@ -76,7 +76,7 @@ main() {
|
| Future runTest2() {
|
| Uri uri = new Uri(scheme: 'source');
|
| var compiler = compilerFor(TEST2, uri);
|
| - return compiler.runCompiler(uri).then((_) {
|
| + return compiler.run(uri).then((_) {
|
| var typesTask = compiler.typesTask;
|
| var typesInferrer = typesTask.typesInferrer;
|
| var element = findElement(compiler, "foo");
|
|
|