Index: tests/language/unary_test.dart |
=================================================================== |
--- tests/language/unary_test.dart (revision 24043) |
+++ tests/language/unary_test.dart (working copy) |
@@ -8,7 +8,7 @@ |
class UnaryTest { |
static foo() { return 4; } |
- static moo() { return +5; } |
+ static moo() { return 5; } |
static testMain() { |
Expect.equals(9.0, (UnaryTest.foo() + UnaryTest.moo())); |
} |