| Index: pkg/unittest/lib/unittest.dart
|
| diff --git a/pkg/unittest/lib/unittest.dart b/pkg/unittest/lib/unittest.dart
|
| index 268eff6d48a2bd402915e05d826210cc502e936c..3661f992c8cfeb8ae41bfd773a12377e4dcdbfad 100644
|
| --- a/pkg/unittest/lib/unittest.dart
|
| +++ b/pkg/unittest/lib/unittest.dart
|
| @@ -162,8 +162,7 @@ final _TestEnvironment _defaultEnvironment = new _TestEnvironment();
|
| */
|
| _TestEnvironment get _environment {
|
| var environment = Zone.current[_UNITTEST_ENVIRONMENT];
|
| - if (environment == null)
|
| - return _defaultEnvironment;
|
| + if (environment == null) return _defaultEnvironment;
|
| return environment;
|
| }
|
|
|
| @@ -210,7 +209,7 @@ void logMessage(String message) =>
|
| String groupSep = ' ';
|
|
|
| /// Tests executed in this suite.
|
| -final List<TestCase> testCases =
|
| +List<TestCase> get testCases =>
|
| new UnmodifiableListView<TestCase>(_environment.testCases);
|
|
|
| /// Interval (in msecs) after which synchronous tests will insert an async
|
|
|