From c0e2b65864b15f51b2f18f03aedf1c3beec13e2b Mon Sep 17 00:00:00 2001 From: Twaha Rahman <39026437+Twaha-Rahman@users.noreply.github.com> Date: Sat, 2 May 2020 20:25:55 +0600 Subject: [PATCH] Wrapped all the test results with quotation (#38706) --- .../convert-html-entities.english.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md index c4f3aefa75..301e43dc20 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md @@ -21,19 +21,19 @@ Convert the characters &, <, >, "convertHTML("Dolce & Gabbana") should return Dolce &amp; Gabbana. + - text: convertHTML("Dolce & Gabbana") should return "Dolce &amp; Gabbana". testString: assert.match(convertHTML("Dolce & Gabbana"), /Dolce & Gabbana/); - - text: convertHTML("Hamburgers < Pizza < Tacos") should return Hamburgers &lt; Pizza &lt; Tacos. + - text: convertHTML("Hamburgers < Pizza < Tacos") should return "Hamburgers &lt; Pizza &lt; Tacos". testString: assert.match(convertHTML("Hamburgers < Pizza < Tacos"), /Hamburgers < Pizza < Tacos/); - - text: convertHTML("Sixty > twelve") should return Sixty &gt; twelve. + - text: convertHTML("Sixty > twelve") should return "Sixty &gt; twelve". testString: assert.match(convertHTML("Sixty > twelve"), /Sixty > twelve/); - - text: convertHTML('Stuff in "quotation marks"') should return Stuff in &quot;quotation marks&quot;. + - text: convertHTML('Stuff in "quotation marks"') should return "Stuff in &quot;quotation marks&quot;". testString: assert.match(convertHTML('Stuff in "quotation marks"'), /Stuff in "quotation marks"/); - - text: convertHTML("Schindler's List") should return Schindler&apos;s List. + - text: convertHTML("Schindler's List") should return "Schindler&apos;s List". testString: assert.match(convertHTML("Schindler's List"), /Schindler's List/); - - text: convertHTML("<>") should return &lt;&gt;. + - text: convertHTML("<>") should return "&lt;&gt;". testString: assert.match(convertHTML('<>'), /<>/); - - text: convertHTML("abc") should return abc. + - text: convertHTML("abc") should return "abc". testString: assert.strictEqual(convertHTML('abc'), 'abc'); ```