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

Unified Diff: tests/lib_strong/html/element_types_constructors3_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/lib_strong/html/element_types_constructors3_test.dart
diff --git a/tests/lib_strong/html/element_types_constructors3_test.dart b/tests/lib_strong/html/element_types_constructors3_test.dart
index 8c3957ee0cf511cc33b985ebd1718ecd7b3f0b21..137e548e70e84e2537f500754b69e52ddad44d39 100644
--- a/tests/lib_strong/html/element_types_constructors3_test.dart
+++ b/tests/lib_strong/html/element_types_constructors3_test.dart
@@ -24,8 +24,8 @@ main() {
check('map', () => new MapElement() is MapElement);
check('menu', () => new MenuElement() is MenuElement);
check('meta', () => new MetaElement() is MetaElement);
- check('meter',
- () => new MeterElement() is MeterElement, MeterElement.supported);
+ check('meter', () => new MeterElement() is MeterElement,
+ MeterElement.supported);
check('del', () => new Element.tag('del') is ModElement);
check('ins', () => new Element.tag('ins') is ModElement);
check('object', () => new ObjectElement() is ObjectElement,
@@ -33,7 +33,7 @@ main() {
check('ol', () => new OListElement() is OListElement);
check('optgroup', () => new OptGroupElement() is OptGroupElement);
check('option', () => new OptionElement() is OptionElement);
- check('output',
- () => new OutputElement() is OutputElement, OutputElement.supported);
+ check('output', () => new OutputElement() is OutputElement,
+ OutputElement.supported);
});
}

Powered by Google App Engine
This is Rietveld 408576698