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

Unified Diff: tests/language_strong/truncdiv_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/truncdiv_test.dart
diff --git a/tests/language_strong/truncdiv_test.dart b/tests/language_strong/truncdiv_test.dart
index 8a00c73c27ae4e8bfb50373e0d3c90ba91cec487..f6b0cc39952f67d3b21ebf23977834aefe3d0429 100644
--- a/tests/language_strong/truncdiv_test.dart
+++ b/tests/language_strong/truncdiv_test.dart
@@ -6,7 +6,6 @@
import "package:expect/expect.dart";
-
main() {
for (int i = -30; i < 30; i++) {
Expect.equals(i % 9, foo(i, 9));
@@ -24,7 +23,7 @@ main() {
foo(i, x) => i % x;
foo2(i) {
- // Make sure x has a range computed.
+ // Make sure x has a range computed.
var x = 0;
if (i < 0) {
x = -i;
@@ -32,4 +31,4 @@ foo2(i) {
x = i;
}
return i ~/ x;
-}
+}

Powered by Google App Engine
This is Rietveld 408576698