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

Unified Diff: tests/language/const_init_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/const_init_test.dart
diff --git a/tests/language/const_init_test.dart b/tests/language/const_init_test.dart
index 3f18dc14952b61369062c64382b07700f5074d6d..714f9e10b95cf0a9e0123e76d6c35715debd9e02 100644
--- a/tests/language/const_init_test.dart
+++ b/tests/language/const_init_test.dart
@@ -8,7 +8,9 @@ import "package:expect/expect.dart";
class Point {
final x_;
final y_;
- const Point(x, y) : x_ = x, y_ = y;
+ const Point(x, y)
+ : x_ = x,
+ y_ = y;
}
class ConstInitTest {

Powered by Google App Engine
This is Rietveld 408576698