diff options
Diffstat (limited to 'test/snippets/template-literal.js')
-rw-r--r-- | test/snippets/template-literal.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/snippets/template-literal.js b/test/snippets/template-literal.js index ff4e08a4d..a5749a555 100644 --- a/test/snippets/template-literal.js +++ b/test/snippets/template-literal.js @@ -37,14 +37,14 @@ export function test() { for (let foo of [fooNoBracesUT16, fooNoBracesUTF8, fooUTF16, fooUTF8]) { console.assert( foo.includes("before"), - `Expected ${foo} to include "before"` + `Expected ${foo} to include "before"`, ); console.assert(foo.includes("after"), `Expected ${foo} to include "after"`); } console.assert( templateLiteralWhichDefinesAFunction.includes("true"), - "Expected fooFunction to include 'true'" + "Expected fooFunction to include 'true'", ); return testDone(import.meta.url); |