| Index: test/queue_list_test.dart
|
| diff --git a/test/queue_list_test.dart b/test/queue_list_test.dart
|
| index 6b213c8dcd5457c261a190831ffb5d49385e0c10..cbe518f5db69c885b18458091b0b1554ef898bc7 100644
|
| --- a/test/queue_list_test.dart
|
| +++ b/test/queue_list_test.dart
|
| @@ -3,7 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| import "package:collection/collection.dart";
|
| -import "package:unittest/unittest.dart";
|
| +import "package:test/test.dart";
|
|
|
| void main() {
|
| group("new QueueList()", () {
|
| @@ -272,5 +272,4 @@ QueueList withInternalGap() {
|
| /// Returns a matcher that expects that a closure throws a
|
| /// [ConcurrentModificationError].
|
| final throwsConcurrentModificationError = throwsA(
|
| - new isInstanceOf<ConcurrentModificationError>(
|
| - "ConcurrentModificationError"));
|
| + new isInstanceOf<ConcurrentModificationError>());
|
|
|