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/encoding/ascii85_test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'std/encoding/ascii85_test.ts') diff --git a/std/encoding/ascii85_test.ts b/std/encoding/ascii85_test.ts index d068c0bf6..02af70964 100644 --- a/std/encoding/ascii85_test.ts +++ b/std/encoding/ascii85_test.ts @@ -126,7 +126,7 @@ for (const [standard, tests] of Object.entries(testCasesNoDelimeter)) { encode(utf8encoder.encode(bin), { standard: standard as Ascii85Standard, }), - b85 + b85, ); } }, @@ -138,7 +138,7 @@ for (const [standard, tests] of Object.entries(testCasesNoDelimeter)) { for (const [bin, b85] of tests) { assertEquals( decode(b85, { standard: standard as Ascii85Standard }), - utf8encoder.encode(bin) + utf8encoder.encode(bin), ); } }, @@ -155,7 +155,7 @@ for (const [standard, tests] of Object.entries(testCasesDelimeter)) { standard: standard as Ascii85Standard, delimiter: true, }), - b85 + b85, ); } }, @@ -170,7 +170,7 @@ for (const [standard, tests] of Object.entries(testCasesDelimeter)) { standard: standard as Ascii85Standard, delimiter: true, }), - utf8encoder.encode(bin) + utf8encoder.encode(bin), ); } }, -- cgit v1.2.3