From f0aeb26337aa5cc8c916e20349f9677bc08e853b Mon Sep 17 00:00:00 2001 From: LumenTeun Date: Sat, 11 Jul 2015 00:46:19 +0200 Subject: [PATCH] 'Create a Text Field' now makes sure the input type is text. #1241 --- seed/challenges/html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/html5-and-css.json b/seed/challenges/html5-and-css.json index e0ad812245..7cbb0d11c7 100644 --- a/seed/challenges/html5-and-css.json +++ b/seed/challenges/html5-and-css.json @@ -1562,7 +1562,7 @@ "Create an input element of type \"text\" below your lists." ], "tests": [ - "assert($('input').length > 0, 'Your app should have a text field input element.')" + "assert($('input[type=text]').length > 0, 'Your app should have a text field input element.')" ], "challengeSeed": [ "",