Update article.md

This commit is contained in:
LeviDing 2019-12-18 22:27:28 +08:00 committed by GitHub
parent 524d598846
commit d1100fc7e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -160,7 +160,7 @@ We can select one of two ways to organize the test here:
}); });
it("3 raised to power 3 is 27", function() { it("3 raised to power 3 is 27", function() {
assert.equal(pow(3, 3), 27); assert.equal(pow(3, 4), 81);
}); });
}); });