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 3a06b1e commit d193e10Copy full SHA for d193e10
src/utils/html.rs
@@ -90,8 +90,8 @@ mod test {
90
let (head, body, class) = super::extract_head_and_body(
91
r#"<head><meta name="generator" content="rustdoc"></head><body class="rustdoc struct"><p>hello</p>"#
92
).unwrap();
93
- assert_eq!(head, r#"<head><meta name="generator" content="rustdoc"></head>"#);
94
- assert_eq!(body, "<body><p>hello</p>");
+ assert_eq!(head, r#"<meta name="generator" content="rustdoc">"#);
+ assert_eq!(body, "<p>hello</p>");
95
assert_eq!(class, "rustdoc struct");
96
}
97
0 commit comments