Skip to content

Commit

Permalink
Update equal -> numEql
Browse files Browse the repository at this point in the history
  • Loading branch information
Kacarott committed Mar 17, 2022
1 parent 1bc3284 commit 30a69de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workspace/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const F = _ => f => f;

describe("counter", () => {
it("fixed tests", () => {
assert.equal(counter(T)(T)(T)(F), 3);
assert.equal(counter(T)(F), 1);
assert.equal(counter(T)(T)(T)(T)(T)(T)(T)(F), 7);
assert.numEql(counter(T)(T)(T)(F), 3);
assert.numEql(counter(T)(F), 1);
assert.numEql(counter(T)(T)(T)(T)(T)(T)(T)(F), 7);
});
});

0 comments on commit 30a69de

Please sign in to comment.