| 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 2475d53405943f6ee7c3c31acb7cce6c285b4d0d..9fbfc2a2b8c4d386f145ab5e7e5e636b31537687 100644
|
| --- a/pkg/unittest/lib/interactive_html_config.dart
|
| +++ b/pkg/unittest/lib/interactive_html_config.dart
|
| @@ -469,9 +469,9 @@ void useInteractiveHtmlConfiguration() {
|
| if (config != null) return;
|
| if (window.location.search == '') { // This is the parent.
|
| _prepareDom();
|
| - configure(new ParentInteractiveHtmlConfiguration());
|
| + config = new ParentInteractiveHtmlConfiguration();
|
| } else {
|
| - configure(new ChildInteractiveHtmlConfiguration());
|
| + config = new ChildInteractiveHtmlConfiguration();
|
| }
|
| }
|
|
|
|
|