From 2e3d0967dc6f8d9a90c298ec61b49f395b79b037 Mon Sep 17 00:00:00 2001 From: Vitaly Tomilov Date: Wed, 2 Aug 2023 08:00:35 +0100 Subject: [PATCH] fix linting issue --- test/ops/concurrency-fork/async.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/ops/concurrency-fork/async.ts b/test/ops/concurrency-fork/async.ts index 8482b89e..fc1fedac 100644 --- a/test/ops/concurrency-fork/async.ts +++ b/test/ops/concurrency-fork/async.ts @@ -9,7 +9,10 @@ export default () => { }); it('must default to the source on invalid handlers', async () => { const input = [1, 2, 3]; - const output = pipe(_async(input), concurrencyFork({onAsync: 123 as any})); + const output = pipe( + _async(input), + concurrencyFork({onAsync: 123 as any}) + ); expect(await _asyncValues(output)).to.eql(input); }); it('must return the result', async () => {