Update tests for smallest common multiple, this closes #507

This commit is contained in:
terakilobyte
2015-05-26 08:44:01 -04:00
parent 8607a9b551
commit 6b7ede6e1e

View File

@ -836,7 +836,7 @@
"expect(smallestCommons([1,5])).to.be.a('number');",
"expect(smallestCommons([1,5])).to.equal(60);",
"expect(smallestCommons([5,1])).to.equal(60);",
"(smallestCommons([1,13])).should.equal(360360);"
"expect(smallestCommons([1,13])).to.equal(360360);"
],
"MDNlinks" : ["Smallest Common Multiple"],
"challengeType": 5