diff --git a/test/bin/tools/trimIndet.spec.ts b/test/bin/tools/trimIndet.spec.ts index c6a2f37f..cad19a39 100644 --- a/test/bin/tools/trimIndet.spec.ts +++ b/test/bin/tools/trimIndet.spec.ts @@ -54,13 +54,12 @@ ipsum }); it("inderpolates preserving new-lines in the interpolated bits", () => { - const a = ["ipsum", "dolor", "sit"].join('\n') + const a = ["ipsum", "dolor", "sit"].join("\n"); const txt = trimIndent` lorem ${a} amet - ` - assert.equal(txt, ['lorem', 'ipsum', 'dolor', 'sit', 'amet'].join('\n')) - }) - -}); \ No newline at end of file + `; + assert.equal(txt, ["lorem", "ipsum", "dolor", "sit", "amet"].join("\n")); + }); +});