Fix compiletest JSON error message

This commit is contained in:
ashtneoi 2018-08-13 23:49:21 -07:00
parent 3c3a7bad49
commit 6a24abbbc5

View File

@ -82,7 +82,7 @@ pub fn extract_rendered(output: &str, proc_res: &ProcRes) -> String {
Err(error) => {
proc_res.fatal(Some(&format!(
"failed to decode compiler output as json: \
`{}`\noutput: {}\nline: {}",
`{}`\nline: {}\noutput: {}",
error, line, output
)));
}
@ -114,7 +114,7 @@ fn parse_line(file_name: &str, line: &str, output: &str, proc_res: &ProcRes) ->
Err(error) => {
proc_res.fatal(Some(&format!(
"failed to decode compiler output as json: \
`{}`\noutput: {}\nline: {}",
`{}`\nline: {}\noutput: {}",
error, line, output
)));
}