Chromium Code Reviews| Index: tests/html/typed_arrays_1_test.dart |
| diff --git a/tests/html/typed_arrays_1_test.dart b/tests/html/typed_arrays_1_test.dart |
| index 1b4f67f95003d3788f61a9e47539e9a1c6965b41..d87a19f2d6147275f34441384a4c6baea921e77f 100644 |
| --- a/tests/html/typed_arrays_1_test.dart |
| +++ b/tests/html/typed_arrays_1_test.dart |
| @@ -39,5 +39,7 @@ main() { |
| test('typeTests', () { |
| var a = new Float32Array(10); |
| Expect.isTrue(a is List); |
| + Expect.isTrue(a is List<num>); |
| + Expect.isTrue(a is! List<String>); |
| }); |
| } |