| Index: pkg/unittest/lib/unittest.dart
|
| diff --git a/pkg/unittest/lib/unittest.dart b/pkg/unittest/lib/unittest.dart
|
| index ec792885b502ec49a5ac6046573a39f4018064a7..3bc7bb7d7883e8bd8b5c6cb88e300a2304abf881 100644
|
| --- a/pkg/unittest/lib/unittest.dart
|
| +++ b/pkg/unittest/lib/unittest.dart
|
| @@ -201,11 +201,9 @@ String _currentGroup = '';
|
| /** Separator used between group names and test names. */
|
| String groupSep = ' ';
|
|
|
| +// TODO(nweiz): present an unmodifiable view of this once issue 8321 is fixed.
|
| /** Tests executed in this suite. */
|
| -final List<TestCase> _testCases = new List<TestCase>();
|
| -
|
| -/** Get the list of tests. */
|
| -final List<TestCase> testCases = new UnmodifiableListView(_testCases);
|
| +final List<TestCase> testCases = new List<TestCase>();
|
|
|
| /** Setup function called before each test in a group */
|
| Function _testSetup;
|
|
|