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

Unified Diff: tests/kernel/unsorted/nsm_dispatcher_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/kernel/unsorted/nsm_dispatcher_test.dart
diff --git a/tests/kernel/unsorted/nsm_dispatcher_test.dart b/tests/kernel/unsorted/nsm_dispatcher_test.dart
index f9cfe4044089f5bfd418f48c102691fb07064f49..39ed6207a0b4eb448486edca2694a70b34b3aad6 100644
--- a/tests/kernel/unsorted/nsm_dispatcher_test.dart
+++ b/tests/kernel/unsorted/nsm_dispatcher_test.dart
@@ -23,10 +23,9 @@ main() {
Expect.isTrue(o.fun() == '|Symbol("fun")|');
Expect.isTrue(o.fun(1) == '|Symbol("fun")|1|');
Expect.isTrue(o.fun(1, 2) == '|Symbol("fun")|1|2|');
- Expect.isTrue(o.fun(1, b: 2) ==
- '|Symbol("fun")|1|Symbol("b")/2|');
- Expect.isTrue(o.fun(1, a: 1, b: 2) ==
- '|Symbol("fun")|1|Symbol("a")/1|Symbol("b")/2|');
- Expect.isTrue(o.fun(1, b: 2, a: 1) ==
- '|Symbol("fun")|1|Symbol("a")/1|Symbol("b")/2|');
+ Expect.isTrue(o.fun(1, b: 2) == '|Symbol("fun")|1|Symbol("b")/2|');
+ Expect.isTrue(
+ o.fun(1, a: 1, b: 2) == '|Symbol("fun")|1|Symbol("a")/1|Symbol("b")/2|');
+ Expect.isTrue(
+ o.fun(1, b: 2, a: 1) == '|Symbol("fun")|1|Symbol("a")/1|Symbol("b")/2|');
}

Powered by Google App Engine
This is Rietveld 408576698