fix: removed more assert msg args (#36441)

This commit is contained in:
Randell Dawson
2019-07-24 05:13:06 -07:00
committed by Parth Parth
parent ee97fa4542
commit cbbfc08108
3 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ tests:
- text: Make your <code>p</code> element visible on your page by uncommenting it.
testString: assert($("p").length > 0);
- text: Be sure to delete all trailing comment tags&#44; i.e. <code>--&#62;</code>.
testString: assert(!/[^fc]-->/gi.test(code.replace(/ *<!--[^fc]*\n/g,'')), 'Be sure to delete all trailing comment tags&#44; i.e. <code>--&#62;</code>.');
testString: assert(!/[^fc]-->/gi.test(code.replace(/ *<!--[^fc]*\n/g,'')));
```