diff options
Diffstat (limited to 'tests/test_spans.rs')
-rw-r--r-- | tests/test_spans.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test_spans.rs b/tests/test_spans.rs index 14d92b2..cb3ee18 100644 --- a/tests/test_spans.rs +++ b/tests/test_spans.rs @@ -150,7 +150,7 @@ fn attribute_name_span() { } labels }; - assert_panics_but_should_not(|| assert_char_encoding_independence(html, labeler)); // FIXME + assert_char_encoding_independence(html, labeler); assert_snapshot!(test_and_annotate(html, labeler), @r###" <test x xyz y=VAL xy=VAL z = VAL yzx = VAL> ^ ^^^ ^ ^^ ^ ^^^ @@ -341,8 +341,6 @@ fn annotate_errors(html: &'static str) -> String { *doesnt_support_utf16.lock().unwrap() = matches!( error, - | Error::DuplicateAttribute // FIXME - | Error::EndTagWithAttributes // FIXME | Error::EndTagWithTrailingSolidus // FIXME ); } |