From 03d6bf06ee952da49622edfe19284ee7122f95fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Mon, 27 Nov 2017 18:40:23 -0500 Subject: [PATCH] Avoid escaping quotes whenever possible (again) Oops, I forgot to rebase and fix after merging a previous PR. I wish there was a way to enforce this with ESLint, but did not find any (only allow) :( --- test/client/js/libs/handlebars/parse.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/client/js/libs/handlebars/parse.js b/test/client/js/libs/handlebars/parse.js index 3e0396b7..8b168780 100644 --- a/test/client/js/libs/handlebars/parse.js +++ b/test/client/js/libs/handlebars/parse.js @@ -249,7 +249,7 @@ describe("parse Handlebars helper", () => { input: "test, MaxLeiter", expected: "test, " + - "" + + '' + "MaxLeiter" + "", }]; @@ -265,7 +265,7 @@ describe("parse Handlebars helper", () => { users: ["MaxLeiter, test"], input: "#test-channelMaxLeiter", expected: - "" + + '' + "#test-channelMaxLeiter" + "", }, @@ -273,7 +273,7 @@ describe("parse Handlebars helper", () => { users: ["MaxLeiter, test"], input: "https://www.MaxLeiter.com/test", expected: - "" + + '' + "https://www.MaxLeiter.com/test" + "", },