Merge pull request #1681 from leviding/patch-1

Update 1-js/03-code-quality/05-testing-mocha/pow-2.view/test.js
This commit is contained in:
Ilya Kantor 2019-12-26 15:32:36 +03:00 committed by GitHub
commit 2aa36c14ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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