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

Unified Diff: tests/lib_strong/mirrors/list_constructor_test.dart

Issue 2768073002: Format all multitests (Closed)
Patch Set: Created 3 years, 9 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/lib_strong/mirrors/list_constructor_test.dart
diff --git a/tests/lib_strong/mirrors/list_constructor_test.dart b/tests/lib_strong/mirrors/list_constructor_test.dart
index 87125c5caadf1757546687b3c3f802663ccd09f8..7fa9f5875d0d6ae5297fb1009c66d098a7bce3f1 100644
--- a/tests/lib_strong/mirrors/list_constructor_test.dart
+++ b/tests/lib_strong/mirrors/list_constructor_test.dart
@@ -9,7 +9,7 @@ import 'dart:mirrors';
main() {
var cls = reflectClass(List);
Expect.throws(() => cls.newInstance(const Symbol(''), [null]),
- (e) => e is ArgumentError);
+ (e) => e is ArgumentError);
var list = cls.newInstance(const Symbol(''), [42]).reflectee;
// Check that the list is fixed.

Powered by Google App Engine
This is Rietveld 408576698