diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-30 09:50:53 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-03 23:00:05 +0200 |
commit | 585c6349c9b84345364350f020e8f987a8b44f7b (patch) | |
tree | 8e8facc1a222f7fa134034f429938654c7fb9884 /tests | |
parent | 854e55cd8577baa24a2f3bd00e4ed8687e150f36 (diff) |
fix!: off-by-one end-tag-with-trailing-solidus span
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_spans.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_spans.rs b/tests/test_spans.rs index 28342ea..a2e5d3e 100644 --- a/tests/test_spans.rs +++ b/tests/test_spans.rs @@ -267,7 +267,7 @@ fn error_end_tag_with_trailing_solidus() { let html = "Do you start or do you end? </yes/>"; assert_snapshot!(annotate_errors(html), @r###" Do you start or do you end? </yes/> - ^ end-tag-with-trailing-solidus + ^ end-tag-with-trailing-solidus "###); } |