fix(seed): Fixed check on U tag to Underline tests (#16744)

This commit is contained in:
Hasun Amarasekara
2018-02-24 00:58:44 -06:00
committed by mrugesh mohapatra
parent be7245bb0f
commit 427e279b86

View File

@ -304,7 +304,7 @@
], ],
"tests": [ "tests": [
"assert($('u').length === 1, 'message: Your code should add a <code>u</code> tag to the markup.');", "assert($('u').length === 1, 'message: Your code should add a <code>u</code> tag to the markup.');",
"assert($('u').text().indexOf('Ph.D. students') > -1, 'message: The <code>u</code> tag should wrap around the text \"Ph.D. students\".');", "assert($('u').text() === 'Ph.D. students', 'message: The <code>u</code> tag should wrap around the text \"Ph.D. students\".');",
"assert($('u').children('div').length === 0, 'message: The <code>u</code> tag should not wrap around the parent <code>div</code> tag.');" "assert($('u').children('div').length === 0, 'message: The <code>u</code> tag should not wrap around the parent <code>div</code> tag.');"
], ],
"solutions": [], "solutions": [],