diff options
Diffstat (limited to 'cli/tests/unit/io_test.ts')
-rw-r--r-- | cli/tests/unit/io_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/io_test.ts b/cli/tests/unit/io_test.ts index 210de137d..5338bbc5e 100644 --- a/cli/tests/unit/io_test.ts +++ b/cli/tests/unit/io_test.ts @@ -59,7 +59,7 @@ unitTest(async function copyWithCustomBufferSize() { assertEquals(readSpy.calls, DEFAULT_BUF_SIZE / bufSize + 1); }); -unitTest({ perms: { write: true } }, async function copyBufferToFile() { +unitTest({ permissions: { write: true } }, async function copyBufferToFile() { const filePath = "test-file.txt"; // bigger than max File possible buffer 16kb const bufSize = 32 * 1024; |