This commit is contained in:
Thomas Grainger 2017-05-17 14:45:59 +00:00 committed by GitHub
commit b77cdeafe1
42 changed files with 496 additions and 493 deletions

View file

@ -71,9 +71,9 @@ import Chef from "../src/core/Chef.js";
ret.status = "failing";
ret.output = [
"Expected",
"\t" + test.expectedOutput.replace(/\n/g, "\n\t"),
`\t${test.expectedOutput.replace(/\n/g, "\n\t")}`,
"Received",
"\t" + result.result.replace(/\n/g, "\n\t"),
`\t${result.result.replace(/\n/g, "\n\t")}`,
].join("\n");
}
}