Skip to content

Commit

Permalink
fix: fix Deno.remove call
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Apr 30, 2021
1 parent d5b960b commit b83eef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/internal_binding/fs_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ Deno.test("[node/internal_binding/fs] writeBufferSync", async () => {
}
} finally {
Deno.close(file.rid);
Deno.remove(tempfile);
await Deno.remove(tempfile);
}
});

0 comments on commit b83eef1

Please sign in to comment.