From 0971cf2947ce7c768032b9781ea943ee76972144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Floty=C5=84ski?= Date: Tue, 4 Aug 2015 15:00:22 +0200 Subject: [PATCH] Small Fix of Bootstrap waypoint challenge - Issue 1502 Changed second check for second class - 'btn-default' --- challenges/bootstrap.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/bootstrap.json b/challenges/bootstrap.json index c0b4014f936..8a796f709a8 100644 --- a/challenges/bootstrap.json +++ b/challenges/bootstrap.json @@ -1743,7 +1743,7 @@ ], "tests": [ "assert($('.btn').length > 5, 'Apply the \"btn\" class to each of your button elements.')", - "assert($('.btn').length > 5, 'Apply the \"btn-default\" class to each of your button elements.')" + "assert($('.btn-default').length > 5, 'Apply the \"btn-default\" class to each of your button elements.')" ], "challengeSeed": [ "
",