diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-07-14 15:24:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 15:24:17 -0400 |
commit | cde4dbb35132848ffece59ef9cfaccff32347124 (patch) | |
tree | cc7830968c6decde704c8cfb83c9185193dc698f /std/encoding/ascii85_test.ts | |
parent | 9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff) |
Use dprint for internal formatting (#6682)
Diffstat (limited to 'std/encoding/ascii85_test.ts')
-rw-r--r-- | std/encoding/ascii85_test.ts | 8 |
1 files changed, 4 insertions, 4 deletions
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), ); } }, |