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

Unified Diff: tools/testing/dart/test_suite.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: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index 48af144fef0f40e4569c1b2d281b68c36c52de0d..3218d86b40c9633887686bcc5d22aaa26b3c65dd 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -299,7 +299,7 @@ class StandardTestSuite implements TestSuite {
// If DumpRenderTree/Dartium is required, and not yet updated,
// wait for update.
var updater = runtimeUpdater(configuration);
- if (updater !== null && !updater.updated) {
+ if (updater != null && !updater.updated) {
Expect.isTrue(updater.isActive);
updater.onUpdated.add(() {
forEachTest(onTest, testCache, onDone);

Powered by Google App Engine
This is Rietveld 408576698