Fix Linting Issues

This commit is contained in:
GCHQ 77703 2018-08-26 22:21:17 +01:00
parent 16858443e0
commit fadb395cd9
2 changed files with 4 additions and 4 deletions

View File

@ -64,7 +64,7 @@ import "./tests/operations/SetUnion";
import "./tests/operations/SymmetricDifference"; import "./tests/operations/SymmetricDifference";
import "./tests/operations/TranslateDateTimeFormat"; import "./tests/operations/TranslateDateTimeFormat";
import "./tests/operations/Magic"; import "./tests/operations/Magic";
import "./tests/operations/RenderMoustache" import "./tests/operations/RenderMoustache";
let allTestsPassing = true; let allTestsPassing = true;
const testStatusCounts = { const testStatusCounts = {

View File

@ -35,12 +35,12 @@ Well, {{taxed_value}} after taxes.
}, },
{ {
name: "Render Moustache", name: "Render Moustache",
input: `{}`, input: "{}",
expectedOutput: `Hello .`, expectedOutput: "Hello .",
recipeConfig: [ recipeConfig: [
{ {
op: "Render Moustache", op: "Render Moustache",
args: [`Hello {{name}}.`] args: ["Hello {{name}}."]
} }
], ],
}, },