From ac676f1e19647a210695d36603a65dff305e7e8a Mon Sep 17 00:00:00 2001 From: luongthomas Date: Thu, 16 Jun 2016 09:03:53 -0700 Subject: [PATCH] Added Palindrome test for _eye returning true. --- .../01-front-end-development-certification/basic-bonfires.json | 1 + 1 file changed, 1 insertion(+) diff --git a/seed/challenges/01-front-end-development-certification/basic-bonfires.json b/seed/challenges/01-front-end-development-certification/basic-bonfires.json index b893e61a85..c1e26aaa33 100644 --- a/seed/challenges/01-front-end-development-certification/basic-bonfires.json +++ b/seed/challenges/01-front-end-development-certification/basic-bonfires.json @@ -174,6 +174,7 @@ "tests": [ "assert(typeof palindrome(\"eye\") === \"boolean\", 'message: palindrome(\"eye\") should return a boolean.');", "assert(palindrome(\"eye\") === true, 'message: palindrome(\"eye\") should return true.');", + "assert(palindrome(\"_eye\") === true, 'message: palindrome(\"_eye\") should return true.');", "assert(palindrome(\"race car\") === true, 'message: palindrome(\"race car\") should return true.');", "assert(palindrome(\"not a palindrome\") === false, 'message: palindrome(\"not a palindrome\") should return false.');", "assert(palindrome(\"A man, a plan, a canal. Panama\") === true, 'message: palindrome(\"A man, a plan, a canal. Panama\") should return true.');",