| Index: tests/html/custom_elements_test.dart
|
| diff --git a/tests/html/custom_elements_test.dart b/tests/html/custom_elements_test.dart
|
| index 71714b38708761d56505f8205142f85bd25c7dbf..99143d63f14e863e264b9d03b4d77a529f85faf4 100644
|
| --- a/tests/html/custom_elements_test.dart
|
| +++ b/tests/html/custom_elements_test.dart
|
| @@ -8,7 +8,8 @@ import '../../pkg/unittest/lib/html_individual_config.dart';
|
| import 'dart:html';
|
|
|
| class CustomType extends Element {
|
| - bool onCreatedCalled = false;
|
| + factory CustomType() => null;
|
| + bool onCreatedCalled; // = false;
|
| void onCreated() {
|
| onCreatedCalled = true;
|
| }
|
|
|