diff --git a/src/test/rustdoc/issue-85037.rs b/src/test/rustdoc/recursive-deref-sidebar.rs similarity index 66% rename from src/test/rustdoc/issue-85037.rs rename to src/test/rustdoc/recursive-deref-sidebar.rs index 86bd246a878cc..fcb636ade8f7a 100644 --- a/src/test/rustdoc/issue-85037.rs +++ b/src/test/rustdoc/recursive-deref-sidebar.rs @@ -9,13 +9,13 @@ impl B { pub fn foo_b(&self) {} } pub struct C {} impl C { pub fn foo_c(&self) {} } -// @has issue_85037/struct.A.html '//div[@class="sidebar-links"]' 'foo_b' +// @has recursive_deref_sidebar/struct.A.html '//div[@class="sidebar-links"]' 'foo_b' impl Deref for A { type Target = B; fn deref(&self) -> &B { todo!() } } -// @!has issue_85037/struct.A.html '//div[@class="sidebar-links"]' 'foo_c' +// @!has recursive_deref_sidebar/struct.A.html '//div[@class="sidebar-links"]' 'foo_c' impl Deref for B { type Target = C; fn deref(&self) -> &C { todo!() } diff --git a/src/test/rustdoc/issue-85095.rs b/src/test/rustdoc/recursive-deref.rs similarity index 66% rename from src/test/rustdoc/issue-85095.rs rename to src/test/rustdoc/recursive-deref.rs index 5c4a1da9e596d..91db01177c581 100644 --- a/src/test/rustdoc/issue-85095.rs +++ b/src/test/rustdoc/recursive-deref.rs @@ -3,7 +3,7 @@ use std::ops::Deref; pub struct A; pub struct B; -// @has issue_85095/struct.A.html '//code' 'impl Deref for A' +// @has recursive_deref/struct.A.html '//code' 'impl Deref for A' impl Deref for A { type Target = B; @@ -12,7 +12,7 @@ impl Deref for A { } } -// @has issue_85095/struct.B.html '//code' 'impl Deref for B' +// @has recursive_deref/struct.B.html '//code' 'impl Deref for B' impl Deref for B { type Target = A;