| Index: tests/standalone/typed_data_test.dart
|
| diff --git a/tests/standalone/typed_data_test.dart b/tests/standalone/typed_data_test.dart
|
| index 21f17a5bc06ed3fcd050e6642c41e12286a32020..f8f28aafb8eeee5b7ad678a7ac0e40c37b76a5b4 100644
|
| --- a/tests/standalone/typed_data_test.dart
|
| +++ b/tests/standalone/typed_data_test.dart
|
| @@ -30,7 +30,7 @@ void testCreateClampedUint8TypedData() {
|
|
|
| typed_data = new Uint8ClampedList(0);
|
| Expect.isTrue(typed_data is Uint8ClampedList);
|
| - Expect.isFalse(typed_data is Uint8List);
|
| + Expect.isTrue(typed_data is Uint8List);
|
| Expect.equals(0, typed_data.length);
|
| Expect.equals(0, typed_data.lengthInBytes);
|
|
|
|
|