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

Unified Diff: tests/language_strong/duplicate_interface_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/duplicate_interface_test.dart
diff --git a/tests/language_strong/duplicate_interface_test.dart b/tests/language_strong/duplicate_interface_test.dart
index 887cd309b6a8b2ec78648663e48e79976bf6627a..d957be9b1f29007798a614cef775241bee43f380 100644
--- a/tests/language_strong/duplicate_interface_test.dart
+++ b/tests/language_strong/duplicate_interface_test.dart
@@ -8,14 +8,12 @@ library duplicateInterfaceTest;
import 'package:expect/expect.dart';
import "duplicate_interface_lib.dart" as alib;
-class InterfB { }
+class InterfB {}
// Ok since InterfB and alib.InterfB are not the same interface
-class Foo implements InterfB , alib.InterfB { }
-
+class Foo implements InterfB, alib.InterfB {}
main() {
Expect.isTrue(new Foo() is InterfB);
Expect.isTrue(new Foo() is alib.InterfB);
}
-

Powered by Google App Engine
This is Rietveld 408576698