Used strict equality for second assert

This commit is contained in:
Aryan Jabbari
2015-09-06 00:39:07 -04:00
parent 2817ec49a9
commit 0f46ed8c9d

View File

@ -253,7 +253,7 @@
], ],
"tests": [ "tests": [
"assert(secondToLastLetterOfLastName === 'c', 'secondToLastLetterOfLastName should be \"c\".');", "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": [ "challengeSeed": [
"var firstName = \"Ada\";", "var firstName = \"Ada\";",