We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fc955d commit 1b46084Copy full SHA for 1b46084
src/web/rustdoc.rs
@@ -2240,12 +2240,8 @@ mod test {
2240
.create()?;
2241
2242
// test rustdoc pages stay on the documentation
2243
- let page = kuchiki::parse_html().one(
2244
- env.frontend()
2245
- .get("/hexponent/0.3.0/hexponent/")
2246
- .send()?
2247
- .text()?,
2248
- );
+ let page = kuchiki::parse_html()
+ .one(env.frontend().get("/hexponent/releases").send()?.text()?);
2249
let selector =
2250
r#"ul > li a[href="/crate/hexponent/0.3.1/target-redirect/hexponent/index.html"]"#
2251
.to_string();
0 commit comments