| Index: tests/html/svgelement_test.dart
|
| diff --git a/tests/html/svgelement_test.dart b/tests/html/svgelement_test.dart
|
| index ebef7ab86ef2b93d0f235f4ac88c0838a599b97d..e2e355fd7f0ba87ffced3596458d90b541a388e5 100644
|
| --- a/tests/html/svgelement_test.dart
|
| +++ b/tests/html/svgelement_test.dart
|
| @@ -40,11 +40,11 @@ main() {
|
| }
|
| group('additionalConstructors', () {
|
| test('valid', () {
|
| - final svgContent = """
|
| -<svg version="1.1">
|
| - <circle></circle>
|
| - <path></path>
|
| -</svg>""";
|
| + final svgContent =
|
| + "<svg version=\"1.1\">\n"
|
| + " <circle></circle>\n"
|
| + " <path></path>\n"
|
| + "</svg>";
|
| final el = new svg.SvgElement.svg(svgContent);
|
| expect(el, isSvgSvgElement);
|
| expect(el.innerHtml, anyOf("<circle></circle><path></path>", '<circle '
|
|
|