| Index: tests/html/svgelement2_test.dart
|
| diff --git a/tests/html/svgelement2_test.dart b/tests/html/svgelement2_test.dart
|
| index 15ded5ce5eddac386625a8df11cdb37e491da580..468b61a4016f857e97e3428c6fc66fd87b0146f9 100644
|
| --- a/tests/html/svgelement2_test.dart
|
| +++ b/tests/html/svgelement2_test.dart
|
| @@ -4,7 +4,7 @@
|
|
|
| library SVGElement2Test;
|
| import '../../pkg/unittest/lib/unittest.dart';
|
| -import '../../pkg/unittest/lib/html_individual_config.dart';
|
| +import '../../pkg/unittest/lib/html_config.dart';
|
| import 'svgelement_test.dart' as originalTest;
|
|
|
| class A {
|
| @@ -13,13 +13,9 @@ class A {
|
| }
|
|
|
| main() {
|
| - useHtmlIndividualConfiguration();
|
| -
|
| - group('supported', () {
|
| - // The svgelement_test requires the field "_this" to map to "_this". In this
|
| - // test-case we use another library's '_this' first (see issue 3039 and
|
| - // _ChildNodeListLazy.first).
|
| - expect(new A(499)._this, 499);
|
| - originalTest.main();
|
| - });
|
| + // The svgelement_test requires the field "_this" to map to "_this". In this
|
| + // test-case we use another library's '_this' first (see issue 3039 and
|
| + // _ChildNodeListLazy.first).
|
| + expect(new A(499)._this, 499);
|
| + originalTest.main();
|
| }
|
|
|