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

Unified Diff: tests/language_2/generic_functions_test.dart

Issue 3008573002: Migrate test block 113 to Dart 2.0. (Closed)
Patch Set: Merge fixups 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 | « tests/language_2/generic_function_typedef_test.dart ('k') | tests/language_2/generic_inheritance_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_2/generic_functions_test.dart
diff --git a/tests/language/generic_functions_test.dart b/tests/language_2/generic_functions_test.dart
similarity index 98%
rename from tests/language/generic_functions_test.dart
rename to tests/language_2/generic_functions_test.dart
index 6d22283a88bdab04a0a06a13a540a34f56a4f907..7de3b7d1c0f453ccf277c379fd69c2d93209b52e 100644
--- a/tests/language/generic_functions_test.dart
+++ b/tests/language_2/generic_functions_test.dart
@@ -101,5 +101,5 @@ main() {
BinaryTree<num, num> iT = sT.map<num>((String s) => s.length);
- Expect.equals(iT.foldPre<num>(0, (int i, num s) => i + s), 6);
+ Expect.equals(iT.foldPre<num>(0, (num i, num s) => i + s), 6);
}
« no previous file with comments | « tests/language_2/generic_function_typedef_test.dart ('k') | tests/language_2/generic_inheritance_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698