Chromium Code Reviews| Index: tests/corelib/expando_test.dart |
| diff --git a/tests/corelib/expando_test.dart b/tests/corelib/expando_test.dart |
| index 7e006be083262d9e84126089d985cfb61c8ee7df..318c6308e8b349358803f74311e064ecb7e73e0e 100644 |
| --- a/tests/corelib/expando_test.dart |
| +++ b/tests/corelib/expando_test.dart |
| @@ -23,7 +23,7 @@ class ExpandoTest { |
| static visit(object) { |
| int count = visits[object]; |
| - count = (count === null) ? 1 : count + 1; |
| + count = (count == null) ? 1 : count + 1; |
| visits[object] = count; |
| } |