From cde4dbb35132848ffece59ef9cfaccff32347124 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 14 Jul 2020 15:24:17 -0400 Subject: Use dprint for internal formatting (#6682) --- std/io/streams_test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'std/io/streams_test.ts') diff --git a/std/io/streams_test.ts b/std/io/streams_test.ts index 00d056e2f..4579e3668 100644 --- a/std/io/streams_test.ts +++ b/std/io/streams_test.ts @@ -64,7 +64,7 @@ Deno.test("toReaderCheck", async function (): Promise { assertEquals( expected, - readChunks.map((chunk) => decoder.decode(chunk)) + readChunks.map((chunk) => decoder.decode(chunk)), ); }); @@ -115,7 +115,7 @@ Deno.test("toReaderBigIrregularChunksCheck", async function (): Promise { chunks .slice() .map((chunk) => [...chunk]) - .flat() + .flat(), ); const readableStream = new ReadableStream({ pull(controller): void { -- cgit v1.2.3