fix wrong values in test

This commit is contained in:
alex 2022-02-10 17:43:16 +00:00
parent fff10f43bd
commit a074c146ec

View File

@ -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
)
})
})