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

Unified Diff: tests/language/double_to_string_as_fixed2_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/language/double_to_string_as_fixed2_test.dart
diff --git a/tests/language/double_to_string_as_fixed2_test.dart b/tests/language/double_to_string_as_fixed2_test.dart
index d3f97429d84bf6661acd0d1792891863549c8b7c..d01e8943d2470b0d7f807e59a28f8ba5fdca7416 100644
--- a/tests/language/double_to_string_as_fixed2_test.dart
+++ b/tests/language/double_to_string_as_fixed2_test.dart
@@ -7,16 +7,13 @@ import "package:expect/expect.dart";
main() {
var v = 0.0;
- Expect.throws(() => v.toStringAsFixed(-1),
- (e) => e is RangeError);
- Expect.throws(() => v.toStringAsFixed(21),
- (e) => e is RangeError);
- Expect.throws(() => v.toStringAsFixed(null),
- (e) => e is ArgumentError);
+ Expect.throws(() => v.toStringAsFixed(-1), (e) => e is RangeError);
+ Expect.throws(() => v.toStringAsFixed(21), (e) => e is RangeError);
+ Expect.throws(() => v.toStringAsFixed(null), (e) => e is ArgumentError);
Expect.throws(() => v.toStringAsFixed(1.5),
- (e) => e is ArgumentError || e is TypeError);
+ (e) => e is ArgumentError || e is TypeError);
Expect.throws(() => v.toStringAsFixed("string"),
- (e) => e is ArgumentError || e is TypeError);
+ (e) => e is ArgumentError || e is TypeError);
Expect.throws(() => v.toStringAsFixed("3"),
- (e) => e is ArgumentError || e is TypeError);
+ (e) => e is ArgumentError || e is TypeError);
}

Powered by Google App Engine
This is Rietveld 408576698