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); |