fixup! 73917a033374a26c70dce571639e43ecfc09434d

This commit is contained in:
Noah Hellman 2022-12-04 17:56:49 +01:00
parent c6e971d7e0
commit 5e3d0e9666

View file

@ -513,7 +513,7 @@ mod test {
}
#[test]
fn block_code_block_seq() {
fn block_code_block() {
test_block!(
concat!(
"```` lang\n",
@ -539,5 +539,15 @@ mod test {
"```",
3,
);
test_block!(
concat!(
"``` no space in lang specifier\n",
"l0\n",
"```\n", //
),
Block::Leaf(Paragraph),
"",
3,
);
}
}