From b2e6ab26058cc4de95defc1e95be7d3b0fe8f0e5 Mon Sep 17 00:00:00 2001 From: Mau Di Bert Date: Mon, 10 Dec 2018 10:24:20 -0300 Subject: [PATCH] Update test.js --- 1-js/03-code-quality/05-testing-mocha/pow-full.view/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/03-code-quality/05-testing-mocha/pow-full.view/test.js b/1-js/03-code-quality/05-testing-mocha/pow-full.view/test.js index a5a34597..75ff5e99 100644 --- a/1-js/03-code-quality/05-testing-mocha/pow-full.view/test.js +++ b/1-js/03-code-quality/05-testing-mocha/pow-full.view/test.js @@ -1,6 +1,6 @@ describe("pow", function() { - describe("raises x to power n", function() { + describe("raises x to power 3", function() { function makeTest(x) { let expected = x * x * x;