| Index: tests/language/invocation_mirror2_test.dart
|
| diff --git a/tests/language/invocation_mirror2_test.dart b/tests/language/invocation_mirror2_test.dart
|
| index c07330cac0131cd0b3b380b1140fc3505ef3ea46..3e64ba40591cab28fa6acb9dd400b47cd2361ad5 100644
|
| --- a/tests/language/invocation_mirror2_test.dart
|
| +++ b/tests/language/invocation_mirror2_test.dart
|
| @@ -9,7 +9,7 @@ class GetName {
|
| set flif(_) => "flif=";
|
| }
|
|
|
| -String getName(im) => reflect(new GetName()).delegate(im);
|
| +int getName(im) => reflect(new GetName()).delegate(im);
|
|
|
| class C {
|
| var im;
|
| @@ -20,6 +20,6 @@ class C {
|
| main() {
|
| var c = new C();
|
| c.flif = 42;
|
| - Expect.equals('flif=', getName(c.im));
|
| + Expect.equals(42, getName(c.im));
|
| Expect.equals(42, c.im.positionalArguments[0]);
|
| }
|
|
|