Merge pull request #8890 from Bouncey/FIX/Comparison-with-the-Inequality-Operator

FIX/Comparison-with-the-Inequality-Operator
pull/18182/head
Eric Leung 2016-06-08 21:54:33 -07:00
commit 9d19c8dd25
1 changed files with 1 additions and 1 deletions

View File

@ -2783,7 +2783,7 @@
"assert(testNotEqual(12) === \"Not Equal\", 'message: <code>testNotEqual(12)</code> should return \"Not Equal\"');",
"assert(testNotEqual(\"12\") === \"Not Equal\", 'message: <code>testNotEqual(\"12\")</code> should return \"Not Equal\"');",
"assert(testNotEqual(\"bob\") === \"Not Equal\", 'message: <code>testNotEqual(\"bob\")</code> should return \"Not Equal\"');",
"assert(code.match(/val\\s*!=\\s*\\d+/g).length > 0, 'message: You should use the <code>!=</code> operator');"
"assert(code.match(/(?!!==)!=/), 'message: You should use the <code>!=</code> operator');"
],
"type": "waypoint",
"challengeType": 1,