enable and auto-fix prefer-template rule

This commit is contained in:
Thomas Grainger 2017-05-08 21:15:25 +01:00
parent c43b67ea90
commit 0dafc6553c
No known key found for this signature in database
GPG key ID: 995EA0A029283160
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");
}
}