From 182ac4b5aebb308b054d550ceedb5e9868640404 Mon Sep 17 00:00:00 2001 From: LeviDing Date: Fri, 20 Dec 2019 10:21:21 +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 3f77a802..c803f0e6 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 @@ -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); });