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