| Index: tests/html/custom_elements_test.dart
|
| diff --git a/tests/html/custom_elements_test.dart b/tests/html/custom_elements_test.dart
|
| index 718898ca7b9bd84575b54c63b6f1b629f1fc6d23..9d6b56046dd4c90606d479341dc76e93a9a609fd 100644
|
| --- a/tests/html/custom_elements_test.dart
|
| +++ b/tests/html/custom_elements_test.dart
|
| @@ -18,11 +18,10 @@ class CustomMixin {
|
| }
|
|
|
| class CustomType extends HtmlElement with CustomMixin{
|
| - factory CustomType() => null;
|
| - CustomType.created(): super.created();
|
| + bool createdCalled = false;
|
|
|
| - bool createdCalled; // = false;
|
| - void createdCallback() {
|
| + factory CustomType() => null;
|
| + CustomType.created(): super.created() {
|
| createdCalled = true;
|
| customCreatedCount++;
|
| }
|
|
|