Index: tests/language/forwarding_factory_constructor_default_values_test.dart |
diff --git a/tests/language/forwarding_factory_constructor_default_values_test.dart b/tests/language/forwarding_factory_constructor_default_values_test.dart |
index 2fb0890db0ba1f3d9c8d5edc42e8d85e73cdfed5..70738fe26c5cbfacf8a8cfcf789465214549b598 100644 |
--- a/tests/language/forwarding_factory_constructor_default_values_test.dart |
+++ b/tests/language/forwarding_factory_constructor_default_values_test.dart |
@@ -18,14 +18,12 @@ class A { |
factory A.a1({condition}) = _A1.boo; |
test() { |
- if(condition != true) { |
+ if (condition != true) { |
throw "FAILED"; |
- } |
+ } |
} |
} |
class _A1 extends A { |
- _A1.boo({condition: true}): |
- super(condition: condition); |
+ _A1.boo({condition: true}) : super(condition: condition); |
} |
- |