Index: tests/language_strong/named_parameters_with_conversions_test.dart |
diff --git a/tests/language_strong/named_parameters_with_conversions_test.dart b/tests/language_strong/named_parameters_with_conversions_test.dart |
index a20b60d608dacdf064ff0f7046824fce1d0561a1..a86485bc729c24f7e770410ffa025e1982b6bf93 100644 |
--- a/tests/language_strong/named_parameters_with_conversions_test.dart |
+++ b/tests/language_strong/named_parameters_with_conversions_test.dart |
@@ -98,9 +98,9 @@ class NamedParametersWithConversionsTest { |
Expect.equals(7, a.calls); |
- checkException(() => a.foo()); // Too few arguments. |
- checkException(() => a.foo('abc', 1, 2, 3)); // Too many arguments. |
- checkException(() => a.foo2('c', c: 1)); // Bad name. |
+ checkException(() => a.foo()); // Too few arguments. |
+ checkException(() => a.foo('abc', 1, 2, 3)); // Too many arguments. |
+ checkException(() => a.foo2('c', c: 1)); // Bad name. |
checkException(() => a.foo2('c', a:111, c: 1)); // Bad name. |
sra1
2017/03/21 03:01:09
fix
|
Expect.equals(7, a.calls); |
@@ -119,9 +119,9 @@ class NamedParametersWithConversionsTest { |
Expect.equals(7, a.calls); |
- checkException(() => f()); // Too few arguments. |
- checkException(() => f('abc', 1, 2, 3)); // Too many arguments. |
- checkException(() => f2('c', c: 1)); // Bad name. |
+ checkException(() => f()); // Too few arguments. |
+ checkException(() => f('abc', 1, 2, 3)); // Too many arguments. |
+ checkException(() => f2('c', c: 1)); // Bad name. |
checkException(() => f2('c', a: 111, c: 1)); // Bad name. |
sra1
2017/03/21 03:01:09
fix
|
Expect.equals(7, a.calls); |