diff options
Diffstat (limited to 'std/node/_fs/_fs_dirent_test.ts')
-rw-r--r-- | std/node/_fs/_fs_dirent_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/node/_fs/_fs_dirent_test.ts b/std/node/_fs/_fs_dirent_test.ts index 8c4b98214..aeb20f1d5 100644 --- a/std/node/_fs/_fs_dirent_test.ts +++ b/std/node/_fs/_fs_dirent_test.ts @@ -65,14 +65,14 @@ Deno.test({ new Dirent(entry).isFIFO(); }, Error, - "does not yet support" + "does not yet support", ); assertThrows( () => { new Dirent(entry).isSocket(); }, Error, - "does not yet support" + "does not yet support", ); }, }); |