From b579d80dda98b826b97f05870aaa4f82dd437bd7 Mon Sep 17 00:00:00 2001 From: Randy Tolentino Date: Wed, 2 Mar 2016 09:54:18 -0600 Subject: [PATCH] Changed very last test for the Comparisons with the Logical And Operator challenge. - the last test was a repeat, of testing the number 51 and expecting No - changed the spec to test for 80, and should still return No --- .../basic-javascript.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index b541c850e1..4b8c3f0d22 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -979,7 +979,7 @@ "

Instructiones

", "Usa barras invertidaspara asigar una cadena a la variable myStr de modo que si tu fueras a imprimirla en la consola, tu verĂ­as:", "I am a \"double quoted\" string inside \"double quotes\"" - ] + ] }, { "id": "56533eb9ac21ba0edf2244b4", @@ -3084,7 +3084,7 @@ "assert(myTest(50) === \"Yes\", 'message: myTest(50) should return \"Yes\"');", "assert(myTest(51) === \"No\", 'message: myTest(51) should return \"No\"');", "assert(myTest(75) === \"No\", 'message: myTest(75) should return \"No\"');", - "assert(myTest(51) === \"No\", 'message: myTest(51) should return \"No\"');" + "assert(myTest(80) === \"No\", 'message: myTest(80) should return \"No\"');" ], "type": "waypoint", "challengeType": 1,