diff options
author | dubiousjim <dubiousjim@gmail.com> | 2020-03-14 22:57:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-14 22:57:42 -0400 |
commit | 6cc40b08652d0224111dc5e902210174b5a63cee (patch) | |
tree | 6ece1c2418e09851e51b082962894bef370c9f31 /std/node/_fs/_fs_dirent_test.ts | |
parent | 0df9823cba680d41b981e021a88aaf19e88b0e76 (diff) |
BREAKING CHANGE FileInfo.len renamed to FileName.size (#4338)
Diffstat (limited to 'std/node/_fs/_fs_dirent_test.ts')
-rw-r--r-- | std/node/_fs/_fs_dirent_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/node/_fs/_fs_dirent_test.ts b/std/node/_fs/_fs_dirent_test.ts index 6fe0f4020..36091d3e1 100644 --- a/std/node/_fs/_fs_dirent_test.ts +++ b/std/node/_fs/_fs_dirent_test.ts @@ -3,7 +3,7 @@ import { assert, assertEquals, assertThrows } from "../../testing/asserts.ts"; import Dirent from "./_fs_dirent.ts"; class FileInfoMock implements Deno.FileInfo { - len = -1; + size = -1; modified = -1; accessed = -1; created = -1; |