Index: pkg/unittest/lib/interactive_html_config.dart |
diff --git a/pkg/unittest/lib/interactive_html_config.dart b/pkg/unittest/lib/interactive_html_config.dart |
index 7cc2a04384c2902b9b2bc191a978a934f7f2e212..796fcd46832993b9a6bb8407779e6c32cf7689dc 100644 |
--- a/pkg/unittest/lib/interactive_html_config.dart |
+++ b/pkg/unittest/lib/interactive_html_config.dart |
@@ -242,7 +242,7 @@ class ParentInteractiveHtmlConfiguration extends HtmlConfiguration { |
void onInit() { |
_installErrorHandler(); |
_messageHandler = _handleMessage; // We need to make just one closure. |
- document.query('#group-divs').innerHTML = ""; |
+ document.query('#group-divs').innerHtml = ""; |
} |
void onStart() { |
@@ -355,7 +355,7 @@ class ParentInteractiveHtmlConfiguration extends HtmlConfiguration { |
testItem.classes.clear(); |
testItem.classes.add('test-it'); |
testItem.classes.add('status-pending'); |
- testItem.query('#$_actionIdPrefix$id').innerHTML = ''; |
+ testItem.query('#$_actionIdPrefix$id').innerHtml = ''; |
} |
} |