| Index: tests/html/xmlelement_test.dart
|
| diff --git a/tests/html/xmlelement_test.dart b/tests/html/xmlelement_test.dart
|
| index 4f9c1f9d398db2b9a1543e13223c59101f9c1443..ccc110ce9943228860de480663b738b96f6bc42b 100644
|
| --- a/tests/html/xmlelement_test.dart
|
| +++ b/tests/html/xmlelement_test.dart
|
| @@ -115,13 +115,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']));
|
| });
|
|
|
|
|