Index: tests/lib_strong/typed_data/typed_data_hierarchy_test.dart |
diff --git a/tests/lib_strong/typed_data/typed_data_hierarchy_test.dart b/tests/lib_strong/typed_data/typed_data_hierarchy_test.dart |
index eba0e7bd35f4687cfe8ae689d5c348a9961a281c..36ace53ed8ee7a71b5af714851cf803926681191 100644 |
--- a/tests/lib_strong/typed_data/typed_data_hierarchy_test.dart |
+++ b/tests/lib_strong/typed_data/typed_data_hierarchy_test.dart |
@@ -15,7 +15,8 @@ void testClampedList() { |
// Force lookup of Uint8List first. |
Expect.isTrue(inscrutable(new Uint8List(1)) is Uint8List); |
- Expect.isFalse(new Uint8ClampedList(1) is Uint8List, |
+ Expect.isFalse( |
+ new Uint8ClampedList(1) is Uint8List, |
'Uint8ClampedList should not be a subtype of Uint8List ' |
'in optimizable test'); |
Expect.isFalse(inscrutable(new Uint8ClampedList(1)) is Uint8List, |
@@ -36,7 +37,6 @@ void implementsTypedData() { |
Expect.isTrue(inscrutable(new Uint32List(1)) is TypedData); |
} |
- |
void implementsList() { |
Expect.isTrue(inscrutable(new Float32List(1)) is List<double>); |
Expect.isTrue(inscrutable(new Float32x4List(1)) is List<Float32x4>); |