| Index: tests/html/xmldocument_test.dart
|
| diff --git a/tests/html/xmldocument_test.dart b/tests/html/xmldocument_test.dart
|
| index d9afa92a665e062eb0e7af5e8b7f676eba25c108..a6aa6aa12cb84f325b702af4ab4f4e3ac1de8bfc 100644
|
| --- a/tests/html/xmldocument_test.dart
|
| +++ b/tests/html/xmldocument_test.dart
|
| @@ -102,13 +102,13 @@ main() {
|
| expect(classes, unorderedEquals(['foo', 'bar', 'baz']));
|
| });
|
|
|
| - test('map', () {
|
| + test('mappedBy', () {
|
| expect(makeClassSet().mappedBy((c) => c.toUpperCase()).toList(),
|
| unorderedEquals(['FOO', 'BAR', 'BAZ']));
|
| });
|
|
|
| - test('filter', () {
|
| - expect(makeClassSet().where((c) => c.contains('a')),
|
| + test('where', () {
|
| + expect(makeClassSet().where((c) => c.contains('a')).toSet(),
|
| unorderedEquals(['bar', 'baz']));
|
| });
|
|
|
|
|