Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(352)

Unified Diff: tests/lib_strong/typed_data/typed_data_hierarchy_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>);

Powered by Google App Engine
This is Rietveld 408576698