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

Unified Diff: tests/corelib/core_runtime_types_test.dart

Issue 11664006: Make Map.keys/values Iterables. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Fix type. Created 8 years 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
Index: tests/corelib/core_runtime_types_test.dart
diff --git a/tests/corelib/core_runtime_types_test.dart b/tests/corelib/core_runtime_types_test.dart
index c40b781b767910073846e086bcf14604fcea4f14..b68a1ff00e5bdb11cc48c36c940bd1718701f1f5 100644
--- a/tests/corelib/core_runtime_types_test.dart
+++ b/tests/corelib/core_runtime_types_test.dart
@@ -221,15 +221,15 @@ class CoreRuntimeTypesTest {
assertEquals(d.remove('c'), null);
assertEquals(d.remove('b'), 2);
- assertListEquals(d.keys, ['a']);
- assertListEquals(d.values, [1]);
+ assertEquals(d.keys.single, 'a');
+ assertEquals(d.values.single, 1);
d['c'] = 3;
d['f'] = 4;
assertEquals(d.keys.length, 3);
assertEquals(d.values.length, 3);
- assertListContains(d.keys, ['a', 'c', 'f']);
- assertListContains(d.values, [1, 3, 4]);
+ assertListContains(d.keys.toList(), ['a', 'c', 'f']);
+ assertListContains(d.values.toList(), [1, 3, 4]);
var count = 0;
d.forEach((key, value) {

Powered by Google App Engine
This is Rietveld 408576698