From 0f46ed8c9d3c7e0dbbacea810a6d4eef2ee420ad Mon Sep 17 00:00:00 2001 From: Aryan Jabbari Date: Sun, 6 Sep 2015 00:39:07 -0400 Subject: [PATCH] Used strict equality for second assert --- seed/challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json index 5a667337fb..d06a1038a9 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/challenges/basic-javascript.json @@ -253,7 +253,7 @@ ], "tests": [ "assert(secondToLastLetterOfLastName === 'c', 'secondToLastLetterOfLastName should be \"c\".');", - "assert(editor.getValue().match(/\\.length/g).length == 2, 'You have to use .length to get the third last letter.');" + "assert(editor.getValue().match(/\\.length/g).length === 2, 'You have to use .length to get the third last letter.');" ], "challengeSeed": [ "var firstName = \"Ada\";",