| Index: tests/lib/mirrors/constructor_optional_args_test.dart
|
| diff --git a/tests/lib/mirrors/constructor_optional_args_test.dart b/tests/lib/mirrors/constructor_optional_args_test.dart
|
| index 221da7a7c35145882b28027d18be4e46f2501593..f9d9657e1b063b276fe771d0a0c1be50abc569fc 100644
|
| --- a/tests/lib/mirrors/constructor_optional_args_test.dart
|
| +++ b/tests/lib/mirrors/constructor_optional_args_test.dart
|
| @@ -17,7 +17,7 @@ class A {
|
| class B implements A {
|
| final _x, _y, _z;
|
|
|
| - B([x = 'x', y = 'y']) : _x = x, _y = y;
|
| + B([x = 'x', y = 'y']) : _x = x, _y = y, _z = null;
|
|
|
| B.more([x = 'x', y = 'y', z = 'z']) : _x = x, _y = y, _z = z;
|
|
|
|
|