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

Unified Diff: tests/language/allocate_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/allocate_test.dart
diff --git a/tests/language/allocate_test.dart b/tests/language/allocate_test.dart
index 1f2fce2a6ba2ce5bbfa6b567ed681e4bf49455fa..2ab25c5e27569c3e8fec7b0a7189db99637727f4 100644
--- a/tests/language/allocate_test.dart
+++ b/tests/language/allocate_test.dart
@@ -6,7 +6,10 @@ import "package:expect/expect.dart";
class MyAllocate {
const MyAllocate([int value = 0]) : value_ = value;
- int getValue() { return value_; }
+ int getValue() {
+ return value_;
+ }
+
final int value_;
}

Powered by Google App Engine
This is Rietveld 408576698