Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(540)

Unified Diff: tests/html/localstorage_test.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/html/js_interop_1_test.dart ('k') | tests/html/native_gc_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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']));
});
« no previous file with comments | « tests/html/js_interop_1_test.dart ('k') | tests/html/native_gc_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698