refactor(cli/tests): remove unnecessary void return types (#11577)

This commit is contained in:
Leo K 2021-08-05 13:08:58 +02:00 committed by GitHub
parent 299c7cfe54
commit 3f0cf9619f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
121 changed files with 1095 additions and 1177 deletions

View file

@ -56,7 +56,7 @@ unitTest(async function responseFormData() {
assertEquals([...formData], [...input]);
});
unitTest(function customInspectFunction(): void {
unitTest(function customInspectFunction() {
const response = new Response();
assertEquals(
Deno.inspect(response),