| Index: pkg/unittest/test/middle_exception_test.dart
|
| diff --git a/pkg/unittest/test/unittest_middle_exception_test.dart b/pkg/unittest/test/middle_exception_test.dart
|
| similarity index 90%
|
| rename from pkg/unittest/test/unittest_middle_exception_test.dart
|
| rename to pkg/unittest/test/middle_exception_test.dart
|
| index ba7751470b30046bbe22f6dd27f360ce13fb44e3..6fb1b7b8f550fa040158c8a8858073d6760a7e02 100644
|
| --- a/pkg/unittest/test/unittest_middle_exception_test.dart
|
| +++ b/pkg/unittest/test/middle_exception_test.dart
|
| @@ -3,11 +3,13 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| library unittestTest;
|
| -import 'dart:isolate';
|
| +
|
| import 'dart:async';
|
| +import 'dart:isolate';
|
| +
|
| import 'package:unittest/unittest.dart';
|
|
|
| -part 'unittest_test_utils.dart';
|
| +part 'utils.dart';
|
|
|
| var testName = 'late exception test';
|
|
|
| @@ -23,5 +25,5 @@ var testFunction = (_) {
|
| });
|
| };
|
|
|
| -var expected = buildStatusString(2, 1, 0,
|
| +final expected = buildStatusString(2, 1, 0,
|
| 'testOne::testTwo:Expected: false Actual: <true>:testThree');
|
|
|