about summary refs log tree commit diff
path: root/tests/rustdoc/inline-default-methods.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-01-31 06:25:30 +0000
committerbors <bors@rust-lang.org>2023-01-31 06:25:30 +0000
commit7c4a9a971ca6962533bed01ffbd0c1f6b5250abc (patch)
tree904e6bf143781822be126e176f256545da3767dd /tests/rustdoc/inline-default-methods.rs
parentdc3e59cb3fe05ebd752d3a2269f501c00327be22 (diff)
parent150340bafdcd48becbe612a0d4d5631efe23621c (diff)
Auto merge of #107498 - JohnTitor:rollup-2i6g4uk, r=JohnTitor
Rollup of 8 pull requests

Successful merges:

 - #107245 (Implement unsizing in the new trait solver)
 - #107445 (Remove `GenFuture` from core)
 - #107473 (Update books)
 - #107476 (rustdoc: remove unnecessary wrapper `div.item-decl` from HTML)
 - #107477 (Migrate last part of CSS themes to CSS variables)
 - #107479 (Use `ObligationCtxt::new_in_snapshot` in `satisfied_from_param_env`)
 - #107482 (rustdoc: remove meta keywords from HTML)
 - #107494 (fix link in std::path::Path::display())

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'tests/rustdoc/inline-default-methods.rs')
-rw-r--r--tests/rustdoc/inline-default-methods.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rustdoc/inline-default-methods.rs b/tests/rustdoc/inline-default-methods.rs
index a4ca928f333..e6468316f58 100644
--- a/tests/rustdoc/inline-default-methods.rs
+++ b/tests/rustdoc/inline-default-methods.rs
@@ -4,6 +4,6 @@
 extern crate inline_default_methods;
 
 // @has inline_default_methods/trait.Foo.html
-// @has - '//div[@class="item-decl"]/pre[@class="rust"]' 'fn bar(&self);'
-// @has - '//div[@class="item-decl"]/pre[@class="rust"]' 'fn foo(&mut self) { ... }'
+// @has - '//pre[@class="rust item-decl"]' 'fn bar(&self);'
+// @has - '//pre[@class="rust item-decl"]' 'fn foo(&mut self) { ... }'
 pub use inline_default_methods::Foo;