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

Unified Diff: tools/testing/dart/test_runner.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_runner.dart
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
index 20a3deebc2952902ab2d58bf9fad06aceb853c13..324984f3e522b239c4498cc9fef5166b577a0f56 100644
--- a/tools/testing/dart/test_runner.dart
+++ b/tools/testing/dart/test_runner.dart
@@ -778,7 +778,7 @@ class BatchRunnerProcess {
void startTest(TestCase testCase) {
Expect.isNull(_currentTest);
_currentTest = testCase;
- if (_process === null) {
+ if (_process == null) {
// Start process if not yet started.
_executable = testCase.commands.last.executable;
_startProcess(() {

Powered by Google App Engine
This is Rietveld 408576698