Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Unified Diff: tests/corelib/expando_test.dart

Issue 11361190: a === b -> identical(a, b) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 80chars. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698