aboutsummaryrefslogtreecommitdiff
path: root/tests/test_spans.rs
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2023-09-01 19:47:42 +0200
committerMartin Fischer <martin@push-f.com>2023-09-03 23:00:05 +0200
commit5d91c0cca7e8f453e0e2f36c57e9ad85ee8ab124 (patch)
tree4263bbd4c9cbd20a6455d1c7af45cb4cbd32dcf5 /tests/test_spans.rs
parent63f945e568c0710e3a97cddaa6264e85d86faa79 (diff)
fix: off-by-one missing-semicolon-after-character-reference span
Diffstat (limited to 'tests/test_spans.rs')
-rw-r--r--tests/test_spans.rs2
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 = "&not";
assert_snapshot!(annotate_errors(html), @r###"
&not
- ^ missing-semicolon-after-character-reference
+ ^ missing-semicolon-after-character-reference
"###);
}