about summary refs log tree commit diff
path: root/src/test/rustdoc/impl-box.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2022-07-05 15:10:12 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2022-07-05 21:33:39 +0200
commit05e69d8fc6c6e2ce720218fe4f6e34757c1aa05a (patch)
tree6c54f92180a8d0e1b0a0af87c29396a540789f13 /src/test/rustdoc/impl-box.rs
parent499e024ac967a2315bd6dc88086999b92a254a0b (diff)
downloadrust-05e69d8fc6c6e2ce720218fe4f6e34757c1aa05a.tar.gz
rust-05e69d8fc6c6e2ce720218fe4f6e34757c1aa05a.zip
Update rustdoc tests
Diffstat (limited to 'src/test/rustdoc/impl-box.rs')
-rw-r--r--src/test/rustdoc/impl-box.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/rustdoc/impl-box.rs b/src/test/rustdoc/impl-box.rs
index a371db135cf..592b6c98587 100644
--- a/src/test/rustdoc/impl-box.rs
+++ b/src/test/rustdoc/impl-box.rs
@@ -5,7 +5,7 @@
 pub struct MyType;
 
 // @has 'impl_box/struct.MyType.html'
-// @has '-' '//*[@id="impl-Iterator"]' 'impl Iterator for Box<MyType>'
+// @has '-' '//*[@id="impl-Iterator-for-Box%3CMyType%3E"]' 'impl Iterator for Box<MyType>'
 
 impl Iterator for Box<MyType> {
     type Item = ();