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

Unified Diff: tests/corelib/list_map_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/corelib/list_map_test.dart
diff --git a/tests/corelib/list_map_test.dart b/tests/corelib/list_map_test.dart
index 947f40ad3d3cc5f5d723fbb556599cf4b74ceaea..c56b25493bd1bf1fe2c633b64f9a4813d6e34a16 100644
--- a/tests/corelib/list_map_test.dart
+++ b/tests/corelib/list_map_test.dart
@@ -49,7 +49,6 @@ void testOperations() {
Expect.listEquals(subr,
reversed.skip(2).toList().reversed.skip(2).toList().reversed.toList());
-
void testList(List list) {
var throws = const ThrowMarker();
List mappedList = new List(list.length);
@@ -70,8 +69,8 @@ void testOperations() {
index++;
}
if (i2.moveNext()) {
- Expect.fail(
- "Too many actual values. Actual[$index] == ${i2.current}");
+ Expect
+ .fail("Too many actual values. Actual[$index] == ${i2.current}");
}
} else {
Expect.equals(v1, v2, path);
@@ -93,6 +92,7 @@ void testOperations() {
}
testEquals(expect, actual, "$name: $list");
}
+
testOp((i) => i.first, "first");
testOp((i) => i.last, "last");
testOp((i) => i.single, "single");

Powered by Google App Engine
This is Rietveld 408576698