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.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/crates/ide/src/doc_links/tests.rs b/crates/ide/src/doc_links/tests.rs
index 34ffc11c4b..8594a0a224 100644
--- a/crates/ide/src/doc_links/tests.rs
+++ b/crates/ide/src/doc_links/tests.rs
@@ -724,7 +724,10 @@ pub struct $0Foo;
/// [`foo`]: Foo
pub struct $0Foo;
"#,
- expect![["[`foo`]"]],
+ expect![[r#"
+ [`foo`]
+
+ [`foo`]: https://docs.rs/foo/*/foo/struct.Foo.html"#]],
);
}