Skip to content

Commit 5f7d441

Browse files
committed
rename test-cases
1 parent 2d76d44 commit 5f7d441

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/test/rustdoc/issue-85037.rs renamed to src/test/rustdoc/recursive-deref-sidebar.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ impl B { pub fn foo_b(&self) {} }
99
pub struct C {}
1010
impl C { pub fn foo_c(&self) {} }
1111

12-
// @has issue_85037/struct.A.html '//div[@class="sidebar-links"]' 'foo_b'
12+
// @has recursive_deref_sidebar/struct.A.html '//div[@class="sidebar-links"]' 'foo_b'
1313
impl Deref for A {
1414
type Target = B;
1515
fn deref(&self) -> &B { todo!() }
1616
}
1717

18-
// @!has issue_85037/struct.A.html '//div[@class="sidebar-links"]' 'foo_c'
18+
// @!has recursive_deref_sidebar/struct.A.html '//div[@class="sidebar-links"]' 'foo_c'
1919
impl Deref for B {
2020
type Target = C;
2121
fn deref(&self) -> &C { todo!() }

src/test/rustdoc/issue-85095.rs renamed to src/test/rustdoc/recursive-deref.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::ops::Deref;
33
pub struct A;
44
pub struct B;
55

6-
// @has issue_85095/struct.A.html '//code' 'impl Deref for A'
6+
// @has recursive_deref/struct.A.html '//code' 'impl Deref for A'
77
impl Deref for A {
88
type Target = B;
99

@@ -12,7 +12,7 @@ impl Deref for A {
1212
}
1313
}
1414

15-
// @has issue_85095/struct.B.html '//code' 'impl Deref for B'
15+
// @has recursive_deref/struct.B.html '//code' 'impl Deref for B'
1616
impl Deref for B {
1717
type Target = A;
1818

0 commit comments

Comments
 (0)