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

Unified Diff: tests/html/hidden_dom_1_test.dart

Issue 11361190: a === b -> identical(a, b) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. 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
« no previous file with comments | « tests/corelib/set_iterator_test.dart ('k') | tests/html/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/hidden_dom_1_test.dart
diff --git a/tests/html/hidden_dom_1_test.dart b/tests/html/hidden_dom_1_test.dart
index d3208fcda392a95d8d9b8c68844bd588d286737a..318bf4ba08abf1942ee659880d296f13854b484f 100644
--- a/tests/html/hidden_dom_1_test.dart
+++ b/tests/html/hidden_dom_1_test.dart
@@ -38,7 +38,7 @@ checkNoSuchMethod(action()) {
} catch (e) {
ex = e;
}
- if (ex === null)
+ if (ex == null)
expect(false, isTrue, reason: 'Action should have thrown exception');
expect(ex, isNoSuchMethodError);
« no previous file with comments | « tests/corelib/set_iterator_test.dart ('k') | tests/html/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698