Index: tests/html/typed_arrays_5_test.dart |
diff --git a/tests/html/typed_arrays_5_test.dart b/tests/html/typed_arrays_5_test.dart |
index d4da175c0c5a5ad193e3a44cbe03928e739662f9..f755d3185afa911acbb6e7cba3b92d1e4046f4d8 100644 |
--- a/tests/html/typed_arrays_5_test.dart |
+++ b/tests/html/typed_arrays_5_test.dart |
@@ -21,7 +21,7 @@ main() { |
a[i] = i; |
} |
- expect(a.filter((x) => x >= 1000).length, equals(24)); |
+ expect(a.where((x) => x >= 1000).length, equals(24)); |
}); |
test('filter_typed', () { |
@@ -30,7 +30,7 @@ main() { |
a[i] = i; |
} |
- expect(a.filter((x) => x >= 1000).length, equals(24)); |
+ expect(a.where((x) => x >= 1000).length, equals(24)); |
}); |
test('contains', () { |