From 9e1ef650c5b980034f5390a08ede36234eaf0ca1 Mon Sep 17 00:00:00 2001 From: LeviDing Date: Fri, 20 Dec 2019 10:17:15 +0800 Subject: [PATCH] Update test.js --- 1-js/03-code-quality/05-testing-mocha/pow-2.view/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }); });