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

Unified Diff: tests/corelib_strong/string_fromcharcode_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_strong/string_fromcharcode_test.dart
diff --git a/tests/corelib_strong/string_fromcharcode_test.dart b/tests/corelib_strong/string_fromcharcode_test.dart
index c653fa81ffb8676d9792adcd270832a328bf39db..fcc874dcdda5b2b94792c9847af9a66e8c8a88cd 100644
--- a/tests/corelib_strong/string_fromcharcode_test.dart
+++ b/tests/corelib_strong/string_fromcharcode_test.dart
@@ -20,13 +20,12 @@ main() {
Expect.equals(1, unmatched.length);
Expect.equals(0xDC00, unmatched.codeUnitAt(0));
- Expect.throws(() => new String.fromCharCode(-1),
- (e) => e is ArgumentError);
+ Expect.throws(() => new String.fromCharCode(-1), (e) => e is ArgumentError);
// Invalid code point.
- Expect.throws(() => new String.fromCharCode(0x110000),
- (e) => e is ArgumentError);
+ Expect.throws(
+ () => new String.fromCharCode(0x110000), (e) => e is ArgumentError);
- Expect.throws(() => new String.fromCharCode(0x110001),
- (e) => e is ArgumentError);
+ Expect.throws(
+ () => new String.fromCharCode(0x110001), (e) => e is ArgumentError);
}

Powered by Google App Engine
This is Rietveld 408576698