diff --git a/seed_data/challenges/bootstrap.json b/seed_data/challenges/bootstrap.json
index 92190cceeb..dc6c06c8f0 100644
--- a/seed_data/challenges/bootstrap.json
+++ b/seed_data/challenges/bootstrap.json
@@ -260,11 +260,12 @@
"difficulty": 0.050,
"description": [
"Add Bootstrap's btn-block class to your Bootstrap button.",
- "Normally, your buttons are only as wide as the text they contain. By making them block elements, your button will stretch to fill your page's entire horizontal space.",
+ "Normally, your buttons are only as wide as the text they contain. By making them block elements, your button will stretch to fill your page's entire horizontal space.",
"Note that these buttons still need the btn class."
],
"tests": [
- "assert($('.btn-block').length > 0, 'your new button should have the class \"btn-block\".')"
+ "assert($('button').hasClass('btn'), 'Your button should still have the class \"btn\".')",
+ "assert($('button').hasClass('btn-block'), 'Your button should have the class \"btn-block\".')"
],
"challengeSeed": [
"",