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

Unified Diff: tests/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/html/element_types_constructors3_test.dart
diff --git a/tests/html/element_types_constructors3_test.dart b/tests/html/element_types_constructors3_test.dart
index 54324a6a5f551e4941e164cdc1489bff1cde4a32..94fc47e906286e624d94522ef4cdb75580b5ca86 100644
--- a/tests/html/element_types_constructors3_test.dart
+++ b/tests/html/element_types_constructors3_test.dart
@@ -28,8 +28,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,
@@ -37,7 +37,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