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

Unified Diff: tests/corelib_strong/list_replace_range_test.dart

Issue 2683893002: Make corelib_strong tests strong-mode compliant (Closed)
Patch Set: Created 3 years, 10 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
Index: tests/corelib_strong/list_replace_range_test.dart
diff --git a/tests/corelib_strong/list_replace_range_test.dart b/tests/corelib_strong/list_replace_range_test.dart
index 26f016aa0fd14f0ffb430ac1edcf3b41cc7e8308..45b1a849ea979762fb137bbd00fa26821b527d2c 100644
--- a/tests/corelib_strong/list_replace_range_test.dart
+++ b/tests/corelib_strong/list_replace_range_test.dart
@@ -108,10 +108,10 @@ main() {
expectUE(() => test(const [1, 2, 3], 1, 4, []));
}
-void expectRE(Function f) {
+void expectRE(void f()) {
Expect.throws(f, (e) => e is RangeError);
}
-void expectUE(Function f) {
+void expectUE(void f()) {
Expect.throws(f, (e) => e is UnsupportedError);
}

Powered by Google App Engine
This is Rietveld 408576698