diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-08-19 16:21:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-19 16:21:27 -0400 |
commit | bf510544ef26b89d4c2ae935893eaf62995ed903 (patch) | |
tree | b4cbe166e239f5e95f9a17f9d93f025f394e85a7 /tests/unit/read_file_test.ts | |
parent | ee2b6899a1e6a3108bad43443f130ca2dd86a697 (diff) |
chore: improve accessing special file test (#25099)
Diffstat (limited to 'tests/unit/read_file_test.ts')
-rw-r--r-- | tests/unit/read_file_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/read_file_test.ts b/tests/unit/read_file_test.ts index 562bf9969..67944813b 100644 --- a/tests/unit/read_file_test.ts +++ b/tests/unit/read_file_test.ts @@ -148,7 +148,7 @@ Deno.test( ); Deno.test( - { permissions: { read: true }, ignore: Deno.build.os !== "linux" }, + { ignore: Deno.build.os !== "linux" }, async function readFileProcFs() { const data = await Deno.readFile("/proc/self/stat"); assert(data.byteLength > 0); |