diff options
author | Martin Fischer <martin@push-f.com> | 2023-09-01 19:47:42 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-03 23:00:05 +0200 |
commit | 5d91c0cca7e8f453e0e2f36c57e9ad85ee8ab124 (patch) | |
tree | 4263bbd4c9cbd20a6455d1c7af45cb4cbd32dcf5 /tests | |
parent | 63f945e568c0710e3a97cddaa6264e85d86faa79 (diff) |
fix: off-by-one missing-semicolon-after-character-reference 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 560fe0e..0956f8e 100644 --- a/tests/test_spans.rs +++ b/tests/test_spans.rs @@ -249,7 +249,7 @@ fn error_char_ref_missing_semicolon() { let html = "¬"; assert_snapshot!(annotate_errors(html), @r###" ¬ - ^ missing-semicolon-after-character-reference + ^ missing-semicolon-after-character-reference "###); } |