summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/where.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/rustdoc/where.rs (renamed from src/test/rustdoc/where.rs)2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/rustdoc/where.rs b/tests/rustdoc/where.rs
index 8b5bce28f..3ac0c6872 100644
--- a/src/test/rustdoc/where.rs
+++ b/tests/rustdoc/where.rs
@@ -57,6 +57,6 @@ pub enum Foxtrot<F> { Foxtrot1(F) }
// "impl<F> MyTrait for Foxtrot<F>where F: MyTrait"
impl<F> MyTrait for Foxtrot<F>where F: MyTrait {}
-// @has foo/type.Golf.html '//pre[@class="rust typedef"]' \
+// @has foo/type.Golf.html '//div[@class="item-decl"]/pre[@class="rust"]' \
// "type Golf<T>where T: Clone, = (T, T)"
pub type Golf<T> where T: Clone = (T, T);