Skip to content

Commit

Permalink
test(cli/unit): remove rogue console.log statement (denoland#6846)
Browse files Browse the repository at this point in the history
  • Loading branch information
caspervonb committed Jul 22, 2020
1 parent f8695b4 commit 587eefe
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cli/tests/unit/files_test.ts
Expand Up @@ -21,7 +21,6 @@ unitTest({ perms: { read: true } }, async function filesCopyToStdout(): Promise<
const bytesWritten = await Deno.copy(file, Deno.stdout);
const fileSize = Deno.statSync(filename).size;
assertEquals(bytesWritten, fileSize);
console.log("bytes written", bytesWritten);
file.close();
});

Expand Down

0 comments on commit 587eefe

Please sign in to comment.