| Index: tests/standalone/io/url_encoding_test.dart
|
| diff --git a/tests/standalone/io/url_encoding_test.dart b/tests/standalone/io/url_encoding_test.dart
|
| index 4c8cea20eb71dc35917d5e0353f11ecc10407740..d24f931255a62f73bfa7feea862771fb6558a0ad 100644
|
| --- a/tests/standalone/io/url_encoding_test.dart
|
| +++ b/tests/standalone/io/url_encoding_test.dart
|
| @@ -33,7 +33,7 @@ void testParseQueryString() {
|
| 'sqrt2' : '\u221A2',
|
| 'name' : 'Franti\u0161ek'}[key]);
|
| }
|
| - Expect.setEquals(map.keys, ['&', '?', 'foo', 'sqrt2', 'name']);
|
| + Expect.setEquals(map.keys.toSet(), ['&', '?', 'foo', 'sqrt2', 'name']);
|
| }
|
|
|
| void main() {
|
|
|