diff --git a/challenges/01-responsive-web-design/applied-visual-design.json b/challenges/01-responsive-web-design/applied-visual-design.json
index 51da359bf0..c5dfbb300f 100644
--- a/challenges/01-responsive-web-design/applied-visual-design.json
+++ b/challenges/01-responsive-web-design/applied-visual-design.json
@@ -309,7 +309,7 @@
"description": [
"To underline text, you can use the u
tag. This is often used to signify that a section of text is important, or something to remember. With the u
tag, the browser applies the CSS of text-decoration: underline;
to the element.",
"
u
tag around the text \"Ph.D. students\". It should not include the parent div
that has the class of cardText
.",
+ "Wrap the u
tag only around the text \"Ph.D. students\".",
"Noteu
tag when it could be confused for a link. Anchor tags also have a default underlined formatting."
],
"tests": [
@@ -323,12 +323,6 @@
"The u
tag should wrap around the text \"Ph.D. students\".",
"testString":
"assert($('u').text() === 'Ph.D. students', 'The u
tag should wrap around the text \"Ph.D. students\".');"
- },
- {
- "text":
- "The u
tag should not wrap around the parent div
tag.",
- "testString":
- "assert($('u').children('div').length === 0, 'The u
tag should not wrap around the parent div
tag.');"
}
],
"solutions": [],