| Index: tools/testing/dart/co19_test.dart
|
| diff --git a/tools/testing/dart/co19_test.dart b/tools/testing/dart/co19_test.dart
|
| index 70495fb731e0f3a8c33869fca5401f968b14865c..39a12242712aabe8261313644e7f3831ac0897fd 100644
|
| --- a/tools/testing/dart/co19_test.dart
|
| +++ b/tools/testing/dart/co19_test.dart
|
| @@ -59,11 +59,8 @@ void main() {
|
| var listTests = firstConfiguration['list'];
|
|
|
| var configurationIterator = configurations.iterator();
|
| - bool enqueueConfiguration(ProcessQueue queue) {
|
| - if (!configurationIterator.hasNext()) {
|
| - return false;
|
| - }
|
| -
|
| + void enqueueConfiguration(ProcessQueue queue) {
|
| + if (!configurationIterator.hasNext()) return;
|
| var configuration = configurationIterator.next();
|
| for (String selector in selectors.getKeys()) {
|
| if (selector == 'co19') {
|
| @@ -72,7 +69,6 @@ void main() {
|
| throw 'Error: unexpected selector: "$selector".';
|
| }
|
| }
|
| - return true;
|
| }
|
|
|
| // Start process queue.
|
|
|