| 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|');
|
| }
|
|
|