From 54997972a776681cc9a170454e0a1416c582ca94 Mon Sep 17 00:00:00 2001 From: QuietMisdreavus Date: Sun, 17 Jun 2018 16:27:46 -0500 Subject: [PATCH] fix cross-crate-links test hey look, macros properly link to the right place now --- src/test/rustdoc/cross-crate-links.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/rustdoc/cross-crate-links.rs b/src/test/rustdoc/cross-crate-links.rs index 6078352fc0e09..15a774dc9353d 100644 --- a/src/test/rustdoc/cross-crate-links.rs +++ b/src/test/rustdoc/cross-crate-links.rs @@ -66,6 +66,6 @@ pub use all_item_types::FOO_STATIC; #[doc(no_inline)] pub use all_item_types::FOO_CONSTANT; -// @has 'foo/index.html' '//a[@href="../foo/macro.foo_macro.html"]' 'foo_macro' +// @has 'foo/index.html' '//a[@href="../all_item_types/macro.foo_macro.html"]' 'foo_macro' #[doc(no_inline)] pub use all_item_types::foo_macro;