From 17af3dd29b52bb02a66a62105f72c18930894802 Mon Sep 17 00:00:00 2001 From: Ankit Tiwari Date: Wed, 27 Jun 2018 20:49:48 +0530 Subject: [PATCH] fix(challenges): remove unnecessary test cases --- challenges/01-responsive-web-design/css-flexbox.json | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/challenges/01-responsive-web-design/css-flexbox.json b/challenges/01-responsive-web-design/css-flexbox.json index 1b2484cfb..97d252f62 100644 --- a/challenges/01-responsive-web-design/css-flexbox.json +++ b/challenges/01-responsive-web-design/css-flexbox.json @@ -806,20 +806,12 @@ "description": [ "The last challenge introduced the align-items property and gave an example. This property can be applied to a few tweet embed elements to align the flex items inside them.", "
", - "Add the CSS property align-items to the header's .follow-btn element, the header's h3, and the header's h4. Set the value to center." + "Add the CSS property align-items to the header's .follow-btn element. Set the value to center." ], "tests": [ { "text": "The .follow-btn element should have the align-items property set to a value of center.", "testString": "assert($('.follow-btn').css('align-items') == 'center', 'The .follow-btn element should have the align-items property set to a value of center.');" - }, - { - "text": "The h3 element should have the align-items property set to a value of center.", - "testString": "assert($('h3').css('align-items') == 'center', 'The h3 element should have the align-items property set to a value of center.');" - }, - { - "text": "The h4 element should have the align-items property set to a value of center.", - "testString": "assert($('h4').css('align-items') == 'center', 'The h4 element should have the align-items property set to a value of center.');" } ], "solutions": [],