| Index: tests/html/element_classes_test.dart
|
| diff --git a/tests/html/element_classes_test.dart b/tests/html/element_classes_test.dart
|
| index bc89c03a0066c9568ce17bb70290909db2cfc72b..b850b8543550e515d889e8ea0f4632c178ad1509 100644
|
| --- a/tests/html/element_classes_test.dart
|
| +++ b/tests/html/element_classes_test.dart
|
| @@ -66,13 +66,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']));
|
| });
|
|
|
|
|