Skip to content

Commit

Permalink
fix(ch05): fix test name
Browse files Browse the repository at this point in the history
  • Loading branch information
poulzinho committed Dec 28, 2019
1 parent c5b2cc3 commit 6579cc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch-05_pure-functions/5.1_pure-functions.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {expect} from "chai";
import {double} from "./5.1_pure-functions";

describe("Pure Functions", () => {
it("should always return the same output", () => {
it("should always return the same output for the same input", () => {
expect(double(2)).to.equal(4);
expect(double(2)).to.equal(4);
expect(double(3)).to.equal(6);
Expand Down

0 comments on commit 6579cc0

Please sign in to comment.