| Index: test/custom_element_proxy_test.dart
|
| diff --git a/test/custom_element_proxy_test.dart b/test/custom_element_proxy_test.dart
|
| index 3437440bbef69543249e0ff77786beb3a4429b52..5fa11e0dbe569ecb5145afde6fc9ac0aaab93c5a 100644
|
| --- a/test/custom_element_proxy_test.dart
|
| +++ b/test/custom_element_proxy_test.dart
|
| @@ -6,10 +6,9 @@ library custom_element_proxy_test;
|
| import 'dart:async';
|
| import 'dart:html';
|
| import 'dart:js';
|
| -import 'package:initialize/initialize.dart' as init;
|
| import 'package:unittest/html_config.dart';
|
| import 'package:unittest/unittest.dart';
|
| -import 'package:web_components/custom_element_proxy.dart';
|
| +import 'package:web_components/web_components.dart';
|
|
|
| @CustomElementProxy('basic-element')
|
| class BasicElement extends HtmlElement {
|
| @@ -34,7 +33,7 @@ class ExtendedElement extends InputElement {
|
|
|
| main() {
|
| useHtmlConfiguration();
|
| - init.run().then((_) {
|
| + initWebComponents().then((_) {
|
| var container = querySelector('#container') as DivElement;
|
|
|
| tearDown(() {
|
|
|