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

Unified Diff: tests/language/finally_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/language/field_optimization3_test.dart ('k') | tests/language/first_class_types_literals_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/finally_test.dart
diff --git a/tests/language/finally_test.dart b/tests/language/finally_test.dart
index b388045c4a4706dc7917716e390dbf0ffba30b11..d71dab6cfdb58896101a5637cb4db5406555dad1 100644
--- a/tests/language/finally_test.dart
+++ b/tests/language/finally_test.dart
@@ -11,7 +11,7 @@ class A {
foo() {
bool executedFinally = false;
- if (i === 42) {
+ if (i == 42) {
try {
i = 12;
} finally {
« no previous file with comments | « tests/language/field_optimization3_test.dart ('k') | tests/language/first_class_types_literals_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698