diff --git a/challenges/01-responsive-web-design/css-flexbox.json b/challenges/01-responsive-web-design/css-flexbox.json
index 1b2484cfb2c..97d252f628d 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.",
"
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": [],