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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 11267008: Fix issue that cases the usesWebDriver getter in TestCase to always return false. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 months 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
« tools/testing/dart/test_runner.dart ('K') | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index e0f49d3350c60a2a091c50f2136eec53757e1622..0b9c8fd5f3fb02361f494ea4c6f731d75b38ea8e 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -155,8 +155,7 @@ class CCTestSuite implements TestSuite {
[new Command(runnerPath, args)],
configuration,
completeHandler,
- expectations,
- usesWebDriver: TestUtils.usesWebDriver));
+ expectations));
}
}
@@ -458,8 +457,7 @@ class StandardTestSuite implements TestSuite {
completeHandler,
expectations,
isNegative: isNegative,
- info: info,
- usesWebDriver: TestUtils.usesWebDriver));
+ info: info));
}
}
@@ -1210,8 +1208,7 @@ class JUnitTestSuite implements TestSuite {
[new Command('java', args)],
updatedConfiguration,
completeHandler,
- new Set<String>.from([PASS]),
- usesWebDriver: TestUtils.usesWebDriver));
+ new Set<String>.from([PASS])));
doDone();
}
« tools/testing/dart/test_runner.dart ('K') | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698