Chromium Code Reviews| Index: pkg/fixnum/test/int_64_test.dart |
| diff --git a/pkg/fixnum/test/int_64_test.dart b/pkg/fixnum/test/int_64_test.dart |
| index a73f2a934918926423812884f7c3ba61788ae07c..a843c895df062ff9d74d878d5fb4807f919c5155 100644 |
| --- a/pkg/fixnum/test/int_64_test.dart |
| +++ b/pkg/fixnum/test/int_64_test.dart |
| @@ -267,7 +267,7 @@ void testDiv() { |
| void testFactorial() { |
| int64 _fact(int64 n) { |
| - if (n.isZero()) { |
| + if (n.isZero) { |
| return new int64.fromInt(1); |
| } else { |
| return n * _fact(n - new int64.fromInt(1)); |