From a074c146ec226970385e828f37854c15359dba8e Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 10 Feb 2022 17:43:16 +0000 Subject: [PATCH] fix wrong values in test --- test/pattern.test.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/pattern.test.mjs b/test/pattern.test.mjs index ca594df2..5ba702fa 100644 --- a/test/pattern.test.mjs +++ b/test/pattern.test.mjs @@ -181,7 +181,7 @@ describe('Pattern', function() { it('Can alternate', function () { assert.deepStrictEqual( pure(10).when(slowcat(true,false),add(3)).fast(4).firstCycle, - slowcat(10,13,10,10).firstCycle + slowcat(13,10,13,10).firstCycle ) }) })