| Index: tests/compiler/dart2js/deferred_follow_implicit_super_regression_test.dart
|
| diff --git a/tests/compiler/dart2js/deferred_follow_implicit_super_regression_test.dart b/tests/compiler/dart2js/deferred_follow_implicit_super_regression_test.dart
|
| index 6b10ed325f9461800a09d3ba4a5e9d6566d08450..a0a44305193c1c4dbb6569dd440aa604026449ed 100644
|
| --- a/tests/compiler/dart2js/deferred_follow_implicit_super_regression_test.dart
|
| +++ b/tests/compiler/dart2js/deferred_follow_implicit_super_regression_test.dart
|
| @@ -23,16 +23,16 @@ void main() {
|
| compiler.deferredLoadTask.onResolutionComplete(
|
| main, compiler.resolutionWorldBuilder.closedWorldForTesting);
|
|
|
| - var outputUnitForElement = compiler.deferredLoadTask.outputUnitForElement;
|
| + var outputUnitForEntity = compiler.deferredLoadTask.outputUnitForEntity;
|
|
|
| dynamic lib = lookupLibrary("memory:lib.dart");
|
| var a = lib.find("a");
|
| var b = lib.find("b");
|
| var c = lib.find("c");
|
| var d = lib.find("d");
|
| - Expect.equals(outputUnitForElement(a), outputUnitForElement(b));
|
| - Expect.equals(outputUnitForElement(a), outputUnitForElement(c));
|
| - Expect.equals(outputUnitForElement(a), outputUnitForElement(d));
|
| + Expect.equals(outputUnitForEntity(a), outputUnitForEntity(b));
|
| + Expect.equals(outputUnitForEntity(a), outputUnitForEntity(c));
|
| + Expect.equals(outputUnitForEntity(a), outputUnitForEntity(d));
|
| });
|
| }
|
|
|
|
|