From e36ae5d80ff7898a28427c3b8fd7227b74eedca7 Mon Sep 17 00:00:00 2001 From: Jonathan <80848313+jonathankerr@users.noreply.github.com> Date: Fri, 23 Apr 2021 15:14:58 +0100 Subject: [PATCH] fix(curriculum): fluid containers test not specific (#41866) * fix: fluid containers test not specific * fix: fluid containers test not specific * fix: update fluid containers test not specific Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com> Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com> --- .../use-responsive-design-with-bootstrap-fluid-containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/03-front-end-libraries/bootstrap/use-responsive-design-with-bootstrap-fluid-containers.md b/curriculum/challenges/english/03-front-end-libraries/bootstrap/use-responsive-design-with-bootstrap-fluid-containers.md index b0348deae2..3e5204468d 100644 --- a/curriculum/challenges/english/03-front-end-libraries/bootstrap/use-responsive-design-with-bootstrap-fluid-containers.md +++ b/curriculum/challenges/english/03-front-end-libraries/bootstrap/use-responsive-design-with-bootstrap-fluid-containers.md @@ -45,7 +45,7 @@ assert( All HTML elements after the closing `style` tag should be nested in `.container-fluid`. ```js -assert($('.container-fluid').children().length >= 8); +assert($('.container-fluid').children().length >= 8 && !$('.container-fluid').has("style").length && !$('.container-fluid').has("link").length); ``` # --seed--