changed to agree with the style -
greater than 0 instead of greater than or eqal to 1
This commit is contained in:
@ -2036,9 +2036,9 @@
|
|||||||
"Add a comment at the top of your HTML that says <code>You shouldn't need to modify code below this line</code>."
|
"Add a comment at the top of your HTML that says <code>You shouldn't need to modify code below this line</code>."
|
||||||
],
|
],
|
||||||
"tests": [
|
"tests": [
|
||||||
"assert(editor.match(/<!--/g).length >= 1, 'Start a comment with <code><!--</code>.')",
|
"assert(editor.match(/<!--/g).length > 0, 'Start a comment with <code><!--</code>.')",
|
||||||
"assert(editor.match(/this line/g).length >= 1, 'Your comment should have the text <code>You shouldn't need to modify code below this line</code>')",
|
"assert(editor.match(/this line/g).length > 0, 'Your comment should have the text <code>You shouldn't need to modify code below this line</code>')",
|
||||||
"assert(editor.match(/-->/g).length >= 1, 'Be sure to close your comment with <code>--></code>.')"
|
"assert(editor.match(/-->/g).length > 0, 'Be sure to close your comment with <code>--></code>.')"
|
||||||
],
|
],
|
||||||
"challengeSeed": [
|
"challengeSeed": [
|
||||||
"<div class='container-fluid'>",
|
"<div class='container-fluid'>",
|
||||||
|
Reference in New Issue
Block a user