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 e1fb176 commit 0dfe70fCopy full SHA for 0dfe70f
tests/testsuite/doc.rs
@@ -803,17 +803,15 @@ fn output_not_captured() {
803
"a/src/lib.rs",
804
"
805
/// ```
806
- /// ☃
+ /// `
807
808
pub fn foo() {}
809
",
810
)
811
.build();
812
813
p.cargo("doc")
814
- .without_status()
815
- .with_stderr_contains("[..]☃")
816
- .with_stderr_contains(r"[..]unknown start of token: \u{2603}")
+ .with_stderr_contains("[..]unknown start of token: `")
817
.run();
818
}
819
0 commit comments