| Index: tests/compiler/dart2js_extra/type_argument_factory_nocrash_test.dart
|
| diff --git a/tests/compiler/dart2js_extra/type_argument_factory_nocrash_test.dart b/tests/compiler/dart2js_extra/type_argument_factory_nocrash_test.dart
|
| index 607724f12af6e672fe7108e2e19cb655ea9ec655..3d1f10a039ca106c889c9504ed6038719ace8645 100644
|
| --- a/tests/compiler/dart2js_extra/type_argument_factory_nocrash_test.dart
|
| +++ b/tests/compiler/dart2js_extra/type_argument_factory_nocrash_test.dart
|
| @@ -12,6 +12,6 @@ void main() {
|
| Expect.isFalse(o is List<int>);
|
|
|
| // Enable these two lines, the compiler doesn't crash.
|
| - Expect.isTrue(o.keys is List<int>);
|
| - Expect.isFalse(o.keys is List<String>);
|
| + Expect.isTrue(o.keys is Iterable<int>);
|
| + Expect.isFalse(o.keys is Iterable<String>);
|
| }
|
|
|