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

Unified Diff: tests/language/default_factory3_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/default_factory3_test.dart
diff --git a/tests/language/default_factory3_test.dart b/tests/language/default_factory3_test.dart
index fd53ca5a07407136a58fc82dbfca0c5b83425c96..5178a152b3fb37c5ba0c17a6028ac3c00a945351 100644
--- a/tests/language/default_factory3_test.dart
+++ b/tests/language/default_factory3_test.dart
@@ -4,7 +4,6 @@
// Check possibly still unresolved upper bounds of default factory class.
-
abstract class A<T extends Foo> {
factory A() = _AImpl<T>;
}
@@ -16,7 +15,7 @@ class Foo extends Bar {}
class Bar {}
class _AImpl<T extends Foo> implements A<T> {
- factory _AImpl(){}
+ factory _AImpl() {}
}
main() {

Powered by Google App Engine
This is Rietveld 408576698