| 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 12bd9f6aae58b8b94972154365b747829e975c69..28dfdb2b6776d515ece1d700964edad47576d6b0 100644
|
| --- a/tests/html/typed_arrays_1_test.dart
|
| +++ b/tests/html/typed_arrays_1_test.dart
|
| @@ -12,11 +12,11 @@ main() {
|
|
|
| var isnumList = predicate((x) => x is List<num>, 'is a List<num>');
|
| var isStringList = predicate((x) => x is List<String>, 'is a List<String>');
|
| - var expectation = ArrayBuffer.supported ? returnsNormally : throws;
|
| + var expectation = Supported.typeddata ? returnsNormally : throws;
|
|
|
| group('supported', () {
|
| test('supported', () {
|
| - expect(ArrayBuffer.supported, true);
|
| + expect(Supported.typeddata, true);
|
| });
|
| });
|
|
|
|
|