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

Unified Diff: tests/corelib/map_keys_test.dart

Issue 12827018: Add a new implementation of HashMap that uses JS objects for its (multiple) hash tables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove type. Created 7 years, 9 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 | « sdk/lib/collection/hash_map.dart ('k') | tests/corelib/map_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/map_keys_test.dart
diff --git a/tests/corelib/map_keys_test.dart b/tests/corelib/map_keys_test.dart
index 9297f03e060463cfccf0c6204cae4444bbd7fb05..8b3a83348f6717ce72bc9d2d69a8e4d25c6392d3 100644
--- a/tests/corelib/map_keys_test.dart
+++ b/tests/corelib/map_keys_test.dart
@@ -36,7 +36,7 @@ main() {
Expect.isFalse(map5.keys is List);
Expect.equals(2, map5.keys.length);
Expect.isTrue(map5.keys.first == "foo" || map5.keys.first == "bar");
- Expect.isTrue(map5.keys.last == "foo" || map5.keys.first == "bar");
+ Expect.isTrue(map5.keys.last == "foo" || map5.keys.last == "bar");
Expect.notEquals(map5.keys.first, map5.keys.last);
Expect.isTrue(map6.keys is Iterable);
« no previous file with comments | « sdk/lib/collection/hash_map.dart ('k') | tests/corelib/map_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698