| Index: tests/html/documentfragment_test.dart
|
| diff --git a/tests/html/documentfragment_test.dart b/tests/html/documentfragment_test.dart
|
| index 9de3bd13b5f901426b3ac6520a1f1320d3c025f7..dd0850bba80108920dbb74da74dd251079411fea 100644
|
| --- a/tests/html/documentfragment_test.dart
|
| +++ b/tests/html/documentfragment_test.dart
|
| @@ -14,7 +14,7 @@ main() {
|
| var isAnchorElement =
|
| predicate((x) => x is AnchorElement, 'is an AnchorElement');
|
|
|
| - Collection<String> _nodeStrings(Collection<Node> input) {
|
| + List<String> _nodeStrings(Iterable<Node> input) {
|
| var out = new List<String>();
|
| for (Node n in input) {
|
| if (n is Element) {
|
|
|