Skip to content

Commit

Permalink
Merge pull request freeCodeCamp#3768 from abhisekp/fix/modify-test-bf…
Browse files Browse the repository at this point in the history
…-check-for-palindrome

Fix test in Bonfire - Check for Palindrome
  • Loading branch information
ltegman committed Oct 16, 2015
2 parents 8392355 + c453f8f commit 44bfff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seed/challenges/basic-bonfires.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
"assert(palindrome(\"almostomla\") === false, 'message: <code>palindrome(\"almostomla\")</code> should return false.');",
"assert(palindrome(\"My age is 0, 0 si ega ym.\") === true, 'message: <code>palindrome(\"My age is 0, 0 si ega ym.\")</code> should return true.');",
"assert(palindrome(\"1 eye for of 1 eye.\") === false, 'message: <code>palindrome(\"1 eye for of 1 eye.\")</code> should return false.');",
"assert(palindrome(\"0_0 (: /-\\ :) 0-0\") === true, 'message: <code>palindrome(\"0_0 (: /-\\\\ :) 0-0\")</code> should return true.');"
"assert(palindrome(\"0_0 (: /-\\ :) 0-0\") === true, 'message: <code>palindrome(\"0_0 (: /-\\ :) 0-0\")</code> should return true.');"
],
"challengeSeed": [
"function palindrome(str) {",
Expand Down

0 comments on commit 44bfff1

Please sign in to comment.