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

Unified Diff: tests/language_strong/lazy_static7_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/lazy_static7_test.dart
diff --git a/tests/language_strong/lazy_static7_test.dart b/tests/language_strong/lazy_static7_test.dart
index b26ed7318828b9a8a46cd6140c0286fcbcae4aad..fecd89a7e26b6aa0a31ff87ec0551716d5ff6ff8 100644
--- a/tests/language_strong/lazy_static7_test.dart
+++ b/tests/language_strong/lazy_static7_test.dart
@@ -5,7 +5,10 @@
import "package:expect/expect.dart";
var sideEffect = 0;
-int x = (() { sideEffect++; return 499; })();
+int x = (() {
+ sideEffect++;
+ return 499;
+})();
main() {
if (new DateTime.now().day >= -1) {

Powered by Google App Engine
This is Rietveld 408576698