Merge pull request #14884 from no-stack-dub-sack/fix/stack-challenge

fix(challenge): fix bug in learn a stack challenge
This commit is contained in:
Dylan
2017-05-17 22:13:47 -05:00
committed by GitHub

View File

@ -64,7 +64,7 @@
"assert(homeworkStack.length === 4, 'message: <code>homeworkStack</code> should only contain 4 elements.');",
"assert(homeworkStack[3] === 'CS50', 'message: The last element in <code>homeworkStack</code> should be <code>\"CS50\"</code>.');",
"assert(homeworkStack.indexOf('PSY44') === -1, 'message: <code>homeworkStack</code> should not contain <code>\"PSY44\"</code>.');",
"assert(code.match(/=/g).length === 1 && /homeworkStack\\s*=\\s*\\[\"BIO12\"\\s*,\\s*\"HIS80\"\\s*,\\s*\"MAT122\"\\s*,\\s*\"PSY44\"\\]/.test(code)), 'message: The initial declaration of the <code>homeworkStack</code> should not be changed.');"
"assert(code.match(/=/g).length === 1 && /homeworkStack\\s*=\\s*\\[\"BIO12\"\\s*,\\s*\"HIS80\"\\s*,\\s*\"MAT122\"\\s*,\\s*\"PSY44\"\\]/.test(code), 'message: The initial declaration of the <code>homeworkStack</code> should not be changed.');"
],
"solutions": [],
"hints": [],