From d1100fc7e7dadcbc4e5c3bc5ee3bd24d46519e16 Mon Sep 17 00:00:00 2001 From: LeviDing Date: Wed, 18 Dec 2019 22:27:28 +0800 Subject: [PATCH] Update article.md --- 1-js/03-code-quality/05-testing-mocha/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/03-code-quality/05-testing-mocha/article.md b/1-js/03-code-quality/05-testing-mocha/article.md index e9b5e96c..e387b404 100644 --- a/1-js/03-code-quality/05-testing-mocha/article.md +++ b/1-js/03-code-quality/05-testing-mocha/article.md @@ -160,7 +160,7 @@ We can select one of two ways to organize the test here: }); it("3 raised to power 3 is 27", function() { - assert.equal(pow(3, 3), 27); + assert.equal(pow(3, 4), 81); }); });