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

Unified Diff: tests/language_strong/integer_division_by_zero_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_strong/integer_division_by_zero_test.dart
diff --git a/tests/language_strong/integer_division_by_zero_test.dart b/tests/language_strong/integer_division_by_zero_test.dart
index 98aab8c70d2d060c6a0fc3f6bc17f11a565e31ae..54fc9c85c2260b12d614ada9dc7b9f842de26c5d 100644
--- a/tests/language_strong/integer_division_by_zero_test.dart
+++ b/tests/language_strong/integer_division_by_zero_test.dart
@@ -10,6 +10,5 @@ import "package:expect/expect.dart";
divBy0(a) => a ~/ 0;
main() {
- Expect.throws(() => divBy0(4),
- (e) => e is IntegerDivisionByZeroException);
+ Expect.throws(() => divBy0(4), (e) => e is IntegerDivisionByZeroException);
}

Powered by Google App Engine
This is Rietveld 408576698