Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/doc_links/tests.rs')
| -rw-r--r-- | crates/ide/src/doc_links/tests.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/crates/ide/src/doc_links/tests.rs b/crates/ide/src/doc_links/tests.rs index 27a70b18aa..477326c61f 100644 --- a/crates/ide/src/doc_links/tests.rs +++ b/crates/ide/src/doc_links/tests.rs @@ -394,7 +394,6 @@ pub struct $0Foo; "#, expect"#]], ); - // 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`]"]], ); } |