Update test.js

This commit is contained in:
LeviDing 2019-12-20 10:21:21 +08:00 committed by GitHub
parent 9e1ef650c5
commit 182ac4b5ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ describe("pow", function() {
assert.equal(pow(2, 3), 8);
});
it("3 raised to power 3 is 27", function() {
it("3 raised to power 4 is 81", function() {
assert.equal(pow(3, 4), 81);
});