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

Unified Diff: tests/corelib/map_values_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 | « tests/corelib/map_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/map_values_test.dart
diff --git a/tests/corelib/map_values_test.dart b/tests/corelib/map_values_test.dart
index 699a2cc90f361b9b69aa8cad606c9316fd2dea8a..dee7e23f5a14a259a344bd9aea22dd91f3fc9a62 100644
--- a/tests/corelib/map_values_test.dart
+++ b/tests/corelib/map_values_test.dart
@@ -36,7 +36,7 @@ main() {
Expect.isFalse(map5.values is List);
Expect.equals(2, map5.values.length);
Expect.isTrue(map5.values.first == 43 || map5.values.first == 500);
- Expect.isTrue(map5.values.last == 43 || map5.values.first == 500);
+ Expect.isTrue(map5.values.last == 43 || map5.values.last == 500);
Expect.notEquals(map5.values.first, map5.values.last);
Expect.isTrue(map6.values is Iterable);
« no previous file with comments | « tests/corelib/map_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698