diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_spans.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_spans.rs b/tests/test_spans.rs index 840e8e1..e839f53 100644 --- a/tests/test_spans.rs +++ b/tests/test_spans.rs @@ -265,7 +265,7 @@ fn error_eof_before_tag_name() { let html = "<"; assert_snapshot!(annotate_errors(html), @r###" < - ^ eof-before-tag-name + ^ eof-before-tag-name "###); } @@ -277,7 +277,7 @@ fn error_eof_in_comment() { let html = "<!--"; assert_snapshot!(annotate_errors(html), @r###" <!-- - ^ eof-in-comment + ^ eof-in-comment "###); } @@ -286,7 +286,7 @@ fn error_eof_in_doctype() { let html = "<!doctype html"; assert_snapshot!(annotate_errors(html), @r###" <!doctype html - ^ eof-in-doctype + ^ eof-in-doctype "###); } @@ -295,7 +295,7 @@ fn error_eof_in_script_html_comment_like_text() { let html = "<script><!--"; assert_snapshot!(annotate_errors(html), @r###" <script><!-- - ^ eof-in-script-html-comment-like-text + ^ eof-in-script-html-comment-like-text "###); } @@ -304,7 +304,7 @@ fn error_eof_in_tag() { let html = "</sarcasm"; assert_snapshot!(annotate_errors(html), @r###" </sarcasm - ^ eof-in-tag + ^ eof-in-tag "###); } |