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

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

Issue 11343008: Land update to tools directory with new binaries. (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
« no previous file with comments | « tools/testing/bin/windows/dart.exe ('k') | tools/testing/dart/multitest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/co19_test.dart
diff --git a/tools/testing/dart/co19_test.dart b/tools/testing/dart/co19_test.dart
index dba9eb61b13164aa696b71e577f094c71478b0ff..0adda23a69eba2b9d77d99f9f2d6640a6121884e 100644
--- a/tools/testing/dart/co19_test.dart
+++ b/tools/testing/dart/co19_test.dart
@@ -50,7 +50,7 @@ void main() {
arguments.add('co19');
configurations.addAll(optionsParser.parse(arguments));
}
- if (configurations == null || configurations.isEmpty()) return;
+ if (configurations == null || configurations.isEmpty) return;
var firstConfiguration = configurations[0];
Map<String, RegExp> selectors = firstConfiguration['selectors'];
@@ -60,9 +60,9 @@ void main() {
var configurationIterator = configurations.iterator();
void enqueueConfiguration(ProcessQueue queue) {
- if (!configurationIterator.hasNext()) return;
+ if (!configurationIterator.hasNext) return;
var configuration = configurationIterator.next();
- for (String selector in selectors.getKeys()) {
+ for (String selector in selectors.keys) {
if (selector == 'co19') {
queue.addTestSuite(new Co19TestSuite(configuration));
} else {
« no previous file with comments | « tools/testing/bin/windows/dart.exe ('k') | tools/testing/dart/multitest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698