Use dprint for internal formatting (#6682)

This commit is contained in:
David Sherret 2020-07-14 15:24:17 -04:00 committed by GitHub
parent 9eca71caa1
commit cde4dbb351
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
378 changed files with 3116 additions and 3121 deletions

View file

@ -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),
);
}
},