Changed very last test for the Comparisons with the Logical And Operator challenge.

- the last test was a repeat, of testing the number 51 and expecting No
- changed the spec to test for 80, and should still return No
This commit is contained in:
Randy Tolentino
2016-03-02 09:54:18 -06:00
parent c196f5bd61
commit b579d80dda

View File

@ -3084,7 +3084,7 @@
"assert(myTest(50) === \"Yes\", 'message: <code>myTest(50)</code> should return \"Yes\"');",
"assert(myTest(51) === \"No\", 'message: <code>myTest(51)</code> should return \"No\"');",
"assert(myTest(75) === \"No\", 'message: <code>myTest(75)</code> should return \"No\"');",
"assert(myTest(51) === \"No\", 'message: <code>myTest(51)</code> should return \"No\"');"
"assert(myTest(80) === \"No\", 'message: <code>myTest(80)</code> should return \"No\"');"
],
"type": "waypoint",
"challengeType": 1,