about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTrinity Pointard <trinity.pointard@gmail.com>2021-06-16 14:42:51 +0200
committerTrinity Pointard <trinity.pointard@gmail.com>2021-06-16 14:42:51 +0200
commit5f7d44171de8b84558fc76a0f305d83fd6fa34f3 (patch)
tree20a94f5ea813e1239e53511f7da2f007b498d6e3
parent2d76d44eaefc2859c0e5d7645f7a543cd15d5320 (diff)
downloadrust-5f7d44171de8b84558fc76a0f305d83fd6fa34f3.tar.gz
rust-5f7d44171de8b84558fc76a0f305d83fd6fa34f3.zip
rename test-cases
-rw-r--r--src/test/rustdoc/recursive-deref-sidebar.rs (renamed from src/test/rustdoc/issue-85037.rs)4
-rw-r--r--src/test/rustdoc/recursive-deref.rs (renamed from src/test/rustdoc/issue-85095.rs)4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/test/rustdoc/issue-85037.rs b/src/test/rustdoc/recursive-deref-sidebar.rs
index 86bd246a878..fcb636ade8f 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
index 5c4a1da9e59..91db01177c5 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;