| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 439aaad6592839c1b382136b0c190fc78a414a6b..fa057924decfd0652608332dfd85a5336924d9ec 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -99,10 +99,10 @@ main() {
|
|
|
| var configurationIterator = configurations.iterator();
|
| void enqueueConfiguration(ProcessQueue queue) {
|
| - if (!configurationIterator.hasNext()) return;
|
| + if (!configurationIterator.hasNext) return;
|
|
|
| var conf = configurationIterator.next();
|
| - for (String key in selectors.getKeys()) {
|
| + for (String key in selectors.keys) {
|
| if (key == 'co19') {
|
| queue.addTestSuite(new Co19TestSuite(conf));
|
| } else if (conf['runtime'] == 'vm' && key == 'vm') {
|
|
|