Bump pulldown-cmark-to-cmark, adjust usages and fix test

This commit is contained in:
Moritz Vetter 2022-02-06 09:04:06 +01:00
parent 668947056a
commit ba2ef69c79
4 changed files with 7 additions and 11 deletions

View file

@ -394,7 +394,6 @@ pub struct $0Foo;
"#,
expect![[r#"[my Foo](https://docs.rs/foo/*/foo/struct.Foo.html)"#]],
);
// FIXME #11008
check_rewrite(
r#"
//- /main.rs crate:foo
@ -403,9 +402,6 @@ pub struct $0Foo;
/// [`foo`]: Foo
pub struct $0Foo;
"#,
expect![[r#"
[`foo`]
[]: https://docs.rs/foo/*/foo/struct.Foo.html"#]],
expect![["[`foo`]"]],
);
}