| Index: tests/html/localstorage_test.dart
|
| diff --git a/tests/html/localstorage_test.dart b/tests/html/localstorage_test.dart
|
| index ff9a7a3fcc2411016785c0a35cf5cc526f72a453..f2823a2059e2603d69717d2184c82e80e3616345 100644
|
| --- a/tests/html/localstorage_test.dart
|
| +++ b/tests/html/localstorage_test.dart
|
| @@ -85,12 +85,12 @@ main() {
|
| });
|
|
|
| testWithLocalStorage('getKeys', () {
|
| - expect(window.localStorage.keys,
|
| + expect(window.localStorage.keys.toList(),
|
| unorderedEquals(['key1', 'key2', 'key3']));
|
| });
|
|
|
| testWithLocalStorage('getVals', () {
|
| - expect(window.localStorage.values,
|
| + expect(window.localStorage.values.toList(),
|
| unorderedEquals(['val1', 'val2', 'val3']));
|
| });
|
|
|
|
|