Index: tests/language_strong/operator_negate_and_method_negate_test.dart |
diff --git a/tests/language_strong/operator_negate_and_method_negate_test.dart b/tests/language_strong/operator_negate_and_method_negate_test.dart |
index cc7c4a63c78e30f334093cfc5ae3e86c419fbaee..98a0063bf692cd35dbfa2cc6407849f9becf703a 100644 |
--- a/tests/language_strong/operator_negate_and_method_negate_test.dart |
+++ b/tests/language_strong/operator_negate_and_method_negate_test.dart |
@@ -8,7 +8,7 @@ import "package:expect/expect.dart"; |
// well as unary- operator. |
class Foo { |
- operator-() => 42; |
+ operator -() => 42; |
negate() => 87; |
} |