We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 14654f3 + 2ad6b54 commit c74ea1bCopy full SHA for c74ea1b
tests/testsuite/doc.rs
@@ -1315,7 +1315,7 @@ fn doc_cap_lints() {
1315
p.cargo("doc -vv")
1316
.with_stderr_contains(
1317
"\
1318
-[WARNING] `[bad_link]` cannot be resolved, ignoring it...
+[WARNING] `[bad_link]` cannot be resolved[..]
1319
",
1320
)
1321
.run();
@@ -1360,9 +1360,7 @@ fn short_message_format() {
1360
let p = project().file("src/lib.rs", BAD_INTRA_LINK_LIB).build();
1361
p.cargo("doc --message-format=short")
1362
.with_status(101)
1363
- .with_stderr_contains(
1364
- "src/lib.rs:4:6: error: `[bad_link]` cannot be resolved, ignoring it...",
1365
- )
+ .with_stderr_contains("src/lib.rs:4:6: error: `[bad_link]` cannot be resolved[..]")
1366
1367
}
1368
0 commit comments