File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
test/lint/test_runner/src Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -420,11 +420,6 @@ fn lint_markdown() -> LintResult {
420
420
Ok ( output) if output. status . success ( ) => Ok ( ( ) ) ,
421
421
Ok ( output) => {
422
422
let stderr = String :: from_utf8_lossy ( & output. stderr ) ;
423
- let filtered_stderr: String = stderr // Filter out this annoying trailing line
424
- . lines ( )
425
- . filter ( |& line| line != "The following links could not be resolved:" )
426
- . collect :: < Vec < & str > > ( )
427
- . join ( "\n " ) ;
428
423
Err ( format ! (
429
424
r#"
430
425
One or more markdown links are broken.
@@ -434,7 +429,7 @@ Relative links are preferred (but not required) as jumping to file works nativel
434
429
Markdown link errors found:
435
430
{}
436
431
"# ,
437
- filtered_stderr
432
+ stderr
438
433
) )
439
434
}
440
435
Err ( e) if e. kind ( ) == ErrorKind :: NotFound => {
You can’t perform that action at this time.
0 commit comments