Skip to content

Commit 2aa36c1

Browse files
authored
Merge pull request #1681 from leviding/patch-1
Update 1-js/03-code-quality/05-testing-mocha/pow-2.view/test.js
2 parents 990b8f4 + 182ac4b commit 2aa36c1

File tree

1 file changed

+2
-2
lines changed
  • 1-js/03-code-quality/05-testing-mocha/pow-2.view

1 file changed

+2
-2
lines changed

1-js/03-code-quality/05-testing-mocha/pow-2.view/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ describe("pow", function() {
44
assert.equal(pow(2, 3), 8);
55
});
66

7-
it("3 raised to power 3 is 27", function() {
8-
assert.equal(pow(3, 3), 27);
7+
it("3 raised to power 4 is 81", function() {
8+
assert.equal(pow(3, 4), 81);
99
});
1010

1111
});

0 commit comments

Comments
 (0)