From e5c4ca54504d56d032bf6180e526248803a87c6e Mon Sep 17 00:00:00 2001 From: Noah Hellman Date: Mon, 23 Jan 2023 21:11:49 +0100 Subject: [PATCH] fixup! 238e445f3012485d96aba81ca01ee45d7ba97370 --- src/lib.rs | 44 -------------------------------------------- 1 file changed, 44 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index ff30b27..187e211 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1035,50 +1035,6 @@ mod test { ); } - #[test] - fn list_item_unordered_nest() { - test_parse!( - concat!( - "- a\n", // - "\n", // - " - aa\n", // - ), - Start( - List { - kind: ListKind::Unordered, - tight: false, - }, - Attributes::new(), - ), - Start(ListItem, Attributes::new()), - Start(Paragraph, Attributes::new()), - Str("a".into()), - End(Paragraph), - Atom(Blankline), - Start( - List { - kind: ListKind::Unordered, - tight: true, - }, - Attributes::new(), - ), - Start(ListItem, Attributes::new()), - Start(Paragraph, Attributes::new()), - Str("aa".into()), - End(Paragraph), - End(ListItem), - End(List { - kind: ListKind::Unordered, - tight: true, - }), - End(ListItem), - End(List { - kind: ListKind::Unordered, - tight: false, - }), - ); - } - #[test] fn list_item_ordered_decimal() { test_parse!(