diff --git a/seed_data/challenges/basic-html5-and-css.json b/seed_data/challenges/basic-html5-and-css.json
index 7a3a07c47a..6d4d92624f 100644
--- a/seed_data/challenges/basic-html5-and-css.json
+++ b/seed_data/challenges/basic-html5-and-css.json
@@ -1430,8 +1430,8 @@
"For example: <input type='text' placeholder='this is placeholder text'>"
],
"tests": [
- "assert($('[placeholder]').length > 0, 'Your text field should have a placeholder attribute.')",
- "assert(/url/gi.test($('input').attr('placeholder')), 'Your placeholder field should have the value of \"cat photo URL\".')"
+ "assert($('input[placeholder]').length > 0, 'Your text field should have a placeholder attribute.')",
+ "assert($('input').attr('placeholder') === 'cat photo URL', 'Your placeholder field should have the value of \"cat photo URL\".')"
],
"challengeSeed": [
"",