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

Unified Diff: tests/corelib/string_operations_with_null_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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/string_operations_with_null_test.dart
diff --git a/tests/corelib/string_operations_with_null_test.dart b/tests/corelib/string_operations_with_null_test.dart
index cac0c7ced0f32cd8422d65f7c523ffdb51201d8f..a05b98592e3afbd87be49b3d4c67b7f3caa15a39 100644
--- a/tests/corelib/string_operations_with_null_test.dart
+++ b/tests/corelib/string_operations_with_null_test.dart
@@ -11,8 +11,7 @@ returnStringOrNull() {
}
main() {
- Expect.throws(() => 'foo' + returnStringOrNull(),
- (e) => e is ArgumentError);
+ Expect.throws(() => 'foo' + returnStringOrNull(), (e) => e is ArgumentError);
Expect.throws(() => 'foo'.split(returnStringOrNull()),
- (e) => e is ArgumentError || e is NoSuchMethodError);
+ (e) => e is ArgumentError || e is NoSuchMethodError);
}

Powered by Google App Engine
This is Rietveld 408576698