Skip to content

Commit 30a69de

Browse files
committed
Update equal -> numEql
1 parent 1bc3284 commit 30a69de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

workspace/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ const F = _ => f => f;
88

99
describe("counter", () => {
1010
it("fixed tests", () => {
11-
assert.equal(counter(T)(T)(T)(F), 3);
12-
assert.equal(counter(T)(F), 1);
13-
assert.equal(counter(T)(T)(T)(T)(T)(T)(T)(F), 7);
11+
assert.numEql(counter(T)(T)(T)(F), 3);
12+
assert.numEql(counter(T)(F), 1);
13+
assert.numEql(counter(T)(T)(T)(T)(T)(T)(T)(F), 7);
1414
});
1515
});

0 commit comments

Comments
 (0)