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

Unified Diff: tests/corelib/map_values2_test.dart

Issue 22859069: Reapply "Make Map constructors return LinkedHashMap." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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_from_test.dart ('k') | tests/standalone/io/http_detach_socket_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/map_values2_test.dart
diff --git a/tests/corelib/map_values2_test.dart b/tests/corelib/map_values2_test.dart
index 8efc5326456b2294bb01c52ed49e82c2ace48251..d4f5aa3654286d60e0c91f3ab964a82347901723 100644
--- a/tests/corelib/map_values2_test.dart
+++ b/tests/corelib/map_values2_test.dart
@@ -43,7 +43,7 @@ main() {
Expect.isFalse(map5.values is List);
Expect.equals(2, map5.values.length);
Expect.isTrue(map5.values.first == 43 || map5.values.first == 500);
floitsch 2013/08/26 13:00:48 You can now make this deterministic.
Lasse Reichstein Nielsen 2013/08/27 08:41:32 Good point.
- 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<int>);
« no previous file with comments | « tests/corelib/map_from_test.dart ('k') | tests/standalone/io/http_detach_socket_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698