From cee3b691ef3487649fe31053ba395e77a4e44acb Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Fri, 29 Jan 2016 13:55:59 +0000 Subject: [PATCH] Fix test case in Comparisons with the Logical And Operator This fixes the test case to do the correct assert as per the message. tested locally. --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index 02df45c997..f17e48142c 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -2520,7 +2520,7 @@ "assert(myTest(0) === \"No\", 'message: myTest(0) should return \"No\"');", "assert(myTest(24) === \"No\", 'message: myTest(24) should return \"No\"');", "assert(myTest(25) === \"Yes\", 'message: myTest(25) should return \"Yes\"');", - "assert(myTest(49) === \"Yes\", 'message: myTest(30) should return \"Yes\"');", + "assert(myTest(30) === \"Yes\", 'message: myTest(30) should return \"Yes\"');", "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\"');",