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

Unified Diff: pkg/unmodifiable_collection/test/unmodifiable_collection_test.dart

Issue 22284003: pkg: analysis aided cleanup (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nits 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 | « pkg/unittest/test/mirror_matchers_test.dart ('k') | pkg/watcher/lib/src/directory_watcher.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unmodifiable_collection/test/unmodifiable_collection_test.dart
diff --git a/pkg/unmodifiable_collection/test/unmodifiable_collection_test.dart b/pkg/unmodifiable_collection/test/unmodifiable_collection_test.dart
index 2e96e487361039dadeb4b101bc1d181b4dd5d95a..c71b7e8e5fab4260db13c4083e8cbdc5f39ef208 100644
--- a/pkg/unmodifiable_collection/test/unmodifiable_collection_test.dart
+++ b/pkg/unmodifiable_collection/test/unmodifiable_collection_test.dart
@@ -443,11 +443,11 @@ void testNoChangeLengthList(List original, List wrapped, String name) {
});
testThrows("$name - removeWhere throws", () {
- wrapped.removeWhere((E element) => false);
+ wrapped.removeWhere((element) => false);
});
testThrows("$name - retainWhere throws", () {
- wrapped.retainWhere((E element) => true);
+ wrapped.retainWhere((element) => true);
});
testThrows("$name - removeRange throws", () {
« no previous file with comments | « pkg/unittest/test/mirror_matchers_test.dart ('k') | pkg/watcher/lib/src/directory_watcher.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698