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

Unified Diff: tests/lib/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/typed_data/typed_data_hierarchy_test.dart
diff --git a/tests/lib/typed_data/typed_data_hierarchy_test.dart b/tests/lib/typed_data/typed_data_hierarchy_test.dart
index 242c2c2a33b6f5279466485303d860b052ccbef4..cdcbec8841e778a7379a52814b66d1c17664252d 100644
--- a/tests/lib/typed_data/typed_data_hierarchy_test.dart
+++ b/tests/lib/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