| Index: client/tests/client/html/SVGElementTests.dart
|
| diff --git a/client/tests/client/html/SVGElementTest.dart b/client/tests/client/html/SVGElementTests.dart
|
| similarity index 97%
|
| rename from client/tests/client/html/SVGElementTest.dart
|
| rename to client/tests/client/html/SVGElementTests.dart
|
| index 9548505dbc61c45beecde53d53f1039b38e6ec6a..275f328688b760b8caf857f0cd9000f9a49f9c73 100644
|
| --- a/client/tests/client/html/SVGElementTest.dart
|
| +++ b/client/tests/client/html/SVGElementTests.dart
|
| @@ -2,14 +2,8 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -#library('SVGElementTest');
|
| -#import('../../../../lib/unittest/unittest.dart');
|
| -#import('../../../../lib/unittest/html_config.dart');
|
| -#import('dart:html');
|
| -
|
| -main() {
|
| - useHtmlConfiguration();
|
|
|
| +void testSVGElement() {
|
| Collection<String> _nodeStrings(Collection<Node> input) {
|
| final out = new List<String>();
|
| for (Node n in input) {
|
| @@ -187,4 +181,4 @@ main() {
|
| Expect.equals('<circle></circle><path></path>', el.innerHTML);
|
| });
|
| });
|
| -}
|
| +}
|
|
|