| Index: tests/html/localstorage_test.dart
|
| diff --git a/tests/html/localstorage_test.dart b/tests/html/localstorage_test.dart
|
| index 2eb226ff957b938b4b77fdeb4ff1bc1c7652dbe1..38e4204a8ee91485c26ffcbe8fac601387959c6b 100644
|
| --- a/tests/html/localstorage_test.dart
|
| +++ b/tests/html/localstorage_test.dart
|
| @@ -87,12 +87,12 @@ main() {
|
| });
|
|
|
| testWithLocalStorage('getKeys', () {
|
| - Expect.setEquals(['key1', 'key2', 'key3'], window.localStorage.getKeys());
|
| + Expect.setEquals(['key1', 'key2', 'key3'], window.localStorage.keys);
|
| });
|
|
|
| testWithLocalStorage('getVals', () {
|
| Expect.setEquals(['val1', 'val2', 'val3'],
|
| - window.localStorage.getValues());
|
| + window.localStorage.values);
|
| });
|
|
|
| testWithLocalStorage('length', () {
|
|
|