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); |
}); |
} |