| Index: tests/lib_strong/collection/linked_list_test.dart
|
| diff --git a/tests/lib_strong/collection/linked_list_test.dart b/tests/lib_strong/collection/linked_list_test.dart
|
| index 10f7c7725cb245a75b2c51ce97dac703bdb9f128..294f3a7b23c31fa22a935f9f1cb161c04ba3c472 100644
|
| --- a/tests/lib_strong/collection/linked_list_test.dart
|
| +++ b/tests/lib_strong/collection/linked_list_test.dart
|
| @@ -124,7 +124,7 @@ testBadAdd() {
|
| }
|
|
|
| testConcurrentModificationError() {
|
| - test(function(LinkedList ll)) {
|
| + test(function(LinkedList<MyEntry> ll)) {
|
| var ll = new LinkedList<MyEntry>();
|
| for (int i = 0; i < 10; i++) {
|
| ll.add(new MyEntry(i));
|
|
|