Chromium Code Reviews| Index: tests/html/svgelement2_test.dart |
| diff --git a/tests/html/svgelement2_test.dart b/tests/html/svgelement2_test.dart |
| index 468b61a4016f857e97e3428c6fc66fd87b0146f9..15ded5ce5eddac386625a8df11cdb37e491da580 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_config.dart'; |
| +import '../../pkg/unittest/lib/html_individual_config.dart'; |
| import 'svgelement_test.dart' as originalTest; |
| class A { |
| @@ -13,9 +13,13 @@ class A { |
| } |
| 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(); |
| + useHtmlIndividualConfiguration(); |
| + |
| + group('supported', () { |
|
blois
2013/02/01 18:24:19
This isn't really a supported test- can it be slim
|
| + // 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(); |
| + }); |
| } |