| Index: tests/html/custom_elements_test.dart
|
| diff --git a/tests/html/custom_elements_test.dart b/tests/html/custom_elements_test.dart
|
| index 834a7adbdd3e10a31d087f514bf4bfa14129aee7..7f53e029ecff5379f3dee0b335e9e2f8c04493ad 100644
|
| --- a/tests/html/custom_elements_test.dart
|
| +++ b/tests/html/custom_elements_test.dart
|
| @@ -9,7 +9,7 @@ import 'dart:html';
|
|
|
| class CustomType extends Element {
|
| factory CustomType() => null;
|
| - bool onCreatedCalled = false;
|
| + bool onCreatedCalled; // = false;
|
| void onCreated() {
|
| onCreatedCalled = true;
|
| customCreatedCount++;
|
|
|