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

Unified Diff: tests/language_strong/unary_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/unary_test.dart
diff --git a/tests/language_strong/unary_test.dart b/tests/language_strong/unary_test.dart
index 08a6ced32882180c66349eeae22f05c552416a2b..d2421c044f31677e27dd2deaac6280f9045f6d5c 100644
--- a/tests/language_strong/unary_test.dart
+++ b/tests/language_strong/unary_test.dart
@@ -7,8 +7,14 @@ import "package:expect/expect.dart";
// Dart test for testing binary operations.
class UnaryTest {
- static foo() { return 4; }
- static moo() { return 5; }
+ static foo() {
+ return 4;
+ }
+
+ static moo() {
+ return 5;
+ }
+
static testMain() {
Expect.equals(9.0, (UnaryTest.foo() + UnaryTest.moo()));
}

Powered by Google App Engine
This is Rietveld 408576698