| Index: tests/html/localstorage_test.dart
|
| diff --git a/tests/html/localstorage_test.dart b/tests/html/localstorage_test.dart
|
| index 570018336b729fd3f2197085133dd038a8062c42..2eb226ff957b938b4b77fdeb4ff1bc1c7652dbe1 100644
|
| --- a/tests/html/localstorage_test.dart
|
| +++ b/tests/html/localstorage_test.dart
|
| @@ -102,8 +102,8 @@ main() {
|
| });
|
|
|
| testWithLocalStorage('isEmpty', () {
|
| - Expect.isFalse(window.localStorage.isEmpty());
|
| + Expect.isFalse(window.localStorage.isEmpty);
|
| window.localStorage.clear();
|
| - Expect.isTrue(window.localStorage.isEmpty());
|
| + Expect.isTrue(window.localStorage.isEmpty);
|
| });
|
| }
|
|
|