fix(curriculum): Remove additional unnecessary assert message argument wrapped in double quotes from various curriculum sections (#36457)
* fix: remove double quoted assert msg arg - responsive * fix: remove double quoted assert msg arg - js * fix: remove double quoted assert msg arg - libraries * fix: remove double quoted assert msg arg - coding interview
This commit is contained in:
committed by
Parth Parth
parent
8e6c26f271
commit
d0d8282f86
@@ -30,7 +30,7 @@ tests:
|
||||
- text: Your code should have 6 <code>h3</code> closing tags.
|
||||
testString: assert((code.match(/\/h3/g) || []).length===6);
|
||||
- text: Your code should not have any <code>h5</code> tags.
|
||||
testString: assert($("h5").length === 0, "Your code should not have any <code>h5</code> tags.");
|
||||
testString: assert($("h5").length === 0);
|
||||
- text: Your code should not have any <code>h5</code> closing tags.
|
||||
testString: assert(/\/h5/.test(code)===false);
|
||||
```
|
||||
|
Reference in New Issue
Block a user