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

Unified Diff: tests/corelib/list_contains_argument_order_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_contains_argument_order_test.dart
diff --git a/tests/corelib/list_contains_argument_order_test.dart b/tests/corelib/list_contains_argument_order_test.dart
index db97b2d4d41c30a474521467ff8f435dcec99a82..0a3377270da97680d94a41a028728086497bceac 100644
--- a/tests/corelib/list_contains_argument_order_test.dart
+++ b/tests/corelib/list_contains_argument_order_test.dart
@@ -18,16 +18,15 @@ class B {
}
main() {
-
test(iterable) {
Expect.isFalse(iterable.contains(new B()));
}
var iterables = [
- <A>[ new A() ],
+ <A>[new A()],
new List<A>(1)..[0] = new A(),
new List<A>()..add(new A()),
- const <A>[ const A() ],
+ const <A>[const A()],
new Set()..add(new A()),
(new Map()..[new A()] = 0).keys,
(new Map()..[0] = new A()).values

Powered by Google App Engine
This is Rietveld 408576698