diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-31 05:18:49 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-03 23:00:05 +0200 |
commit | d45e09a3157c71e3c95bf618a2b181f322c87a5d (patch) | |
tree | 0093a5b86f9234e7a92ba64e2112823159dc1f29 /tests/test_spans.rs | |
parent | 42a18751eeaaa1637a5446bc5e4965815aa959c0 (diff) |
fix!: wrong attribute value spans for char refs
Diffstat (limited to 'tests/test_spans.rs')
-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 bc6aeee..8f3dc8f 100644 --- a/tests/test_spans.rs +++ b/tests/test_spans.rs @@ -143,7 +143,7 @@ fn attribute_value_with_char_ref() { } assert_snapshot!(annotate(html, labels), @r###" <test x=& y='&' z="&"> - ^ ^ ^ + ^^^^^ ^^^^^ ^^^^^ "###); } |