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

Unified Diff: pkg/testing/lib/src/expectation.dart

Issue 3010803002: Eliminate uses of fuzzy arrows in pkg/testing (fix bots). (Closed)
Patch Set: Created 3 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 | « pkg/testing/lib/src/chain.dart ('k') | pkg/testing/lib/src/zone_helper.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/testing/lib/src/expectation.dart
diff --git a/pkg/testing/lib/src/expectation.dart b/pkg/testing/lib/src/expectation.dart
index 11ef0ee26b8c4286962b9f8c2f6deda4870770f1..3ba1af80f8787a51886235ad0ed6c2c6b38c854e 100644
--- a/pkg/testing/lib/src/expectation.dart
+++ b/pkg/testing/lib/src/expectation.dart
@@ -89,7 +89,9 @@ class ExpectationSet {
for (Map map in data) {
String name;
String group;
- map.forEach((String key, String value) {
+ map.forEach((_key, _value) {
+ String key = _key;
+ String value = _value;
switch (key) {
case "name":
name = value;
« no previous file with comments | « pkg/testing/lib/src/chain.dart ('k') | pkg/testing/lib/src/zone_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698