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

Unified Diff: tests/language/extends_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/extends_test.dart
diff --git a/tests/language/extends_test.dart b/tests/language/extends_test.dart
index 35cbb2e6435a0b8ba00acdf5af0fa79b5190e4b5..44c1c1895dd105abb8fa50d0edc4d484910069c4 100644
--- a/tests/language/extends_test.dart
+++ b/tests/language/extends_test.dart
@@ -3,13 +3,13 @@
// BSD-style license that can be found in the LICENSE file.
library ExtendsTestMain;
+
import "extends_test_lib.dart";
import "package:expect/expect.dart";
// S should extend class A from below, not the one imported
// from the library.
-class S extends A {
-}
+class S extends A {}
class A {
var y = "class A from main script";
@@ -19,4 +19,3 @@ main() {
var s = new S();
Expect.equals("class A from main script", s.y);
}
-

Powered by Google App Engine
This is Rietveld 408576698