| Index: tests/compiler/dart2js/deferred_mirrors_test.dart
|
| diff --git a/tests/compiler/dart2js/deferred_mirrors_test.dart b/tests/compiler/dart2js/deferred_mirrors_test.dart
|
| index 12e2b7d9433dc03eff2173cd0b6db0921cd9f1f1..f846ab222c3633b39a6dc22c29ed5b89de43883c 100644
|
| --- a/tests/compiler/dart2js/deferred_mirrors_test.dart
|
| +++ b/tests/compiler/dart2js/deferred_mirrors_test.dart
|
| @@ -38,8 +38,7 @@ void main() {
|
| var field2 = lib2.find("field2");
|
|
|
| Expect.notEquals(outputUnitForElement(main), outputUnitForElement(foo1));
|
| - Expect.equals(outputUnitForElement(foo1), outputUnitForElement(sin));
|
| - Expect.equals(outputUnitForElement(foo2), outputUnitForElement(sin));
|
| + Expect.equals(outputUnitForElement(main), outputUnitForElement(sin));
|
| Expect.equals(outputUnitForElement(foo2), outputUnitForElement(field2));
|
| });
|
| runTest('memory:main2.dart', (compiler) {
|
| @@ -59,7 +58,7 @@ void main() {
|
| var foo = lib3.find("foo");
|
|
|
| Expect.notEquals(outputUnitForElement(main), outputUnitForElement(foo));
|
| - Expect.equals(outputUnitForElement(foo), outputUnitForElement(C));
|
| + Expect.equals(outputUnitForElement(main), outputUnitForElement(C));
|
| });
|
| }
|
|
|
|
|