diff options
author | Martin Fischer <martin@push-f.com> | 2023-09-01 13:22:51 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-03 23:00:05 +0200 |
commit | 55e6341d11aa4a51bb0a45e3719eb44c3706b0da (patch) | |
tree | 93946bbda6910aef722182ced49a045ba0550e13 /tests | |
parent | 6556106154d7e7cbc7820f223b9baaf49a900449 (diff) |
fix: make doctype id spans encoding-independent
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 74724a5..09f10f4 100644 --- a/tests/test_spans.rs +++ b/tests/test_spans.rs @@ -299,7 +299,7 @@ fn doctype_id_spans() { labels }; - assert_panics_but_should_not(|| assert_char_encoding_independence(case, labeler)); // FIXME + assert_char_encoding_independence(case, labeler); annotated.push_str(&test_and_annotate(case, labeler)); } |