| Index: pkg/unittest/lib/unittest.dart
|
| diff --git a/pkg/unittest/lib/unittest.dart b/pkg/unittest/lib/unittest.dart
|
| index 47d7e52505ee6cc2ffa4bd83c1839ed15929ad4b..c615b123405933b2f2e93e81cbe0a49ec2742182 100644
|
| --- a/pkg/unittest/lib/unittest.dart
|
| +++ b/pkg/unittest/lib/unittest.dart
|
| @@ -737,7 +737,7 @@ void filterTests(testFilter) {
|
| } else if (testFilter is Function) {
|
| filterFunction = testFilter;
|
| }
|
| - _tests = _tests.where(filterFunction);
|
| + _tests = _tests.where(filterFunction).toList();
|
| }
|
|
|
| /** Runs all queued tests, one at a time. */
|
|
|