| Index: pkg/unittest/lib/html_layout_config.dart
|
| diff --git a/pkg/unittest/lib/html_layout_config.dart b/pkg/unittest/lib/html_layout_config.dart
|
| index ddb0415df75943fb398f2348a3eebb682d6f3da7..7e407ba97c6e8f08f8aeaf2a86c0072277dd1e9b 100644
|
| --- a/pkg/unittest/lib/html_layout_config.dart
|
| +++ b/pkg/unittest/lib/html_layout_config.dart
|
| @@ -309,9 +309,9 @@ void useHtmlLayoutConfiguration() {
|
| if (config != null) return;
|
| if (window.location.search == '') { // This is the parent.
|
| _prepareDom();
|
| - configure(new ParentHtmlConfiguration());
|
| + config = new ParentHtmlConfiguration();
|
| } else {
|
| - configure(new ChildHtmlConfiguration());
|
| + config = new ChildHtmlConfiguration();
|
| }
|
| }
|
|
|
|
|