diff --git a/1-js/03-code-quality/05-testing-mocha/pow-2.view/test.js b/1-js/03-code-quality/05-testing-mocha/pow-2.view/test.js index 9a2f8fde..3f77a802 100644 --- a/1-js/03-code-quality/05-testing-mocha/pow-2.view/test.js +++ b/1-js/03-code-quality/05-testing-mocha/pow-2.view/test.js @@ -5,7 +5,7 @@ describe("pow", function() { }); it("3 raised to power 3 is 27", function() { - assert.equal(pow(3, 3), 27); + assert.equal(pow(3, 4), 81); }); });