From 30a69de968278abba9932af15e6a821a75cf598e Mon Sep 17 00:00:00 2001 From: Kacarott Date: Thu, 17 Mar 2022 17:22:56 +0100 Subject: [PATCH] Update equal -> numEql --- workspace/test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/workspace/test.js b/workspace/test.js index e112641..a9fde25 100644 --- a/workspace/test.js +++ b/workspace/test.js @@ -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); }); });