diff --git a/seed/challenges/bootstrap.json b/seed/challenges/bootstrap.json
index 4c5a3f66def..ef672fb6eed 100644
--- a/seed/challenges/bootstrap.json
+++ b/seed/challenges/bootstrap.json
@@ -1674,11 +1674,12 @@
"title": "Create a Bootstrap Row",
"description": [
"Now we'll create a Bootstrap row for our inline elements.",
- "Create a div element with the class row."
+ "Create a div element below the h3 tag, with a class of row."
],
"tests": [
"assert($(\"div\").length > 1, 'Add a div element below your h3 element.')",
"assert($(\"div\").hasClass(\"row\"), 'Your div element should have the class row')",
+ "assert($(\"div.container-fluid div.row\").length > 0, 'Your row div should be nested inside the container-fluid div')",
"assert(editor.match(/<\\/div>/g) && editor.match(/