about summary refs log tree commit diff
path: root/src/test/rustdoc/extern-impl.rs
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2022-09-25 13:52:26 -0700
committerMichael Howell <michael@notriddle.com>2022-09-25 13:52:26 -0700
commit4ba40314e1a28e6230c6f404ee3b23de3efb7709 (patch)
treefd63c37279a36f2bd5ea3fd170505f707e478ec4 /src/test/rustdoc/extern-impl.rs
parenta7c25b29575c17434406b69773f8c2961af343b3 (diff)
downloadrust-4ba40314e1a28e6230c6f404ee3b23de3efb7709.tar.gz
rust-4ba40314e1a28e6230c6f404ee3b23de3efb7709.zip
rustdoc: update test cases now that code-header is used without in-band
Diffstat (limited to 'src/test/rustdoc/extern-impl.rs')
-rw-r--r--src/test/rustdoc/extern-impl.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/rustdoc/extern-impl.rs b/src/test/rustdoc/extern-impl.rs
index f357d65df94..fd1bc214008 100644
--- a/src/test/rustdoc/extern-impl.rs
+++ b/src/test/rustdoc/extern-impl.rs
@@ -19,9 +19,9 @@ impl Foo {
 // @has foo/trait.Bar.html
 pub trait Bar {}
 
-// @has - '//h3[@class="code-header in-band"]' 'impl Bar for fn()'
+// @has - '//h3[@class="code-header"]' 'impl Bar for fn()'
 impl Bar for fn() {}
-// @has - '//h3[@class="code-header in-band"]' 'impl Bar for extern "C" fn()'
+// @has - '//h3[@class="code-header"]' 'impl Bar for extern "C" fn()'
 impl Bar for extern fn() {}
-// @has - '//h3[@class="code-header in-band"]' 'impl Bar for extern "system" fn()'
+// @has - '//h3[@class="code-header"]' 'impl Bar for extern "system" fn()'
 impl Bar for extern "system" fn() {}