From 062e3d8bdac2bb8229528494f7780df44c3403c1 Mon Sep 17 00:00:00 2001 From: Smoren Date: Mon, 23 Dec 2024 23:53:09 +0300 Subject: [PATCH] Minor changes. --- tests/examples/pipe.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/examples/pipe.test.ts b/tests/examples/pipe.test.ts index 68f6250..e288984 100644 --- a/tests/examples/pipe.test.ts +++ b/tests/examples/pipe.test.ts @@ -163,10 +163,10 @@ it("Async Pipe Usage Example Without Type Annotations Test", async () => { it("Chained Async Pipe Usage Example Test", async () => { const asyncPipe = createPipe() - .add(set.distinctAsync) - .add((input) => single.mapAsync(input, async (x) => x**2)) - .add((input) => single.filterAsync(input, (x) => x < 10)) - .add(reduce.toSumAsync); + .add(set.distinctAsync) + .add((input) => single.mapAsync(input, async (x) => x**2)) + .add((input) => single.filterAsync(input, (x) => x < 10)) + .add(reduce.toSumAsync); { const input = createAsyncIterableFixture([1, 1, 2, 2, 3, 4, 5]);