| Index: lib/unittest.dart
|
| diff --git a/lib/unittest.dart b/lib/unittest.dart
|
| index a22b271bc54a6834d95d13ed114b0b980c8526d5..51ccff432e8491623e54374163ea450e199fa7dc 100644
|
| --- a/lib/unittest.dart
|
| +++ b/lib/unittest.dart
|
| @@ -7,18 +7,16 @@ library unittest;
|
| import 'dart:async';
|
| import 'dart:collection';
|
|
|
| -import 'package:matcher/matcher.dart' show TestFailure, wrapAsync;
|
| -
|
| import 'src/configuration.dart';
|
| import 'src/expected_function.dart';
|
| import 'src/group_context.dart';
|
| import 'src/internal_test_case.dart';
|
| +import 'src/matcher.dart' show TestFailure, wrapAsync;
|
| import 'src/test_case.dart';
|
| import 'src/test_environment.dart';
|
|
|
| -export 'package:matcher/matcher.dart';
|
| -
|
| export 'src/configuration.dart';
|
| +export 'src/matcher.dart';
|
| export 'src/simple_configuration.dart';
|
| export 'src/test_case.dart';
|
|
|
|
|