From f01c580a7fa9ac759e56d08c8ff91ee432ff57dd Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Thu, 13 Jul 2023 16:52:33 -0400 Subject: [PATCH] Add expect fail to tests for radio link targets. --- build.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.rs b/build.rs index bb99b667..0d45c7cd 100644 --- a/build.rs +++ b/build.rs @@ -79,6 +79,8 @@ fn is_expect_fail(name: &str) -> Option<&str> { "element_container_priority_greater_block_greater_block" => Some("Need to implement subscript."), "element_container_priority_section_greater_block" => Some("Need to implement subscript."), "paragraphs_paragraph_with_backslash_line_breaks" => Some("The text we're getting out of the parse tree is already processed to remove line breaks, so our comparison needs to take that into account."), + "radio_link_before_and_after" => Some("Matching the contents of radio targets not yet implemented."), + "radio_link_simple" => Some("Matching the contents of radio targets not yet implemented."), _ => None, } }