Fix linting issue

This commit is contained in:
Daniel Kennedy
2026-02-24 14:32:56 -05:00
parent cb90044223
commit 0a9828ffb3
+1 -4
View File
@@ -39,10 +39,7 @@ describe('createRawFileUploadStream', () => {
})
it('should propagate file read errors through the upload stream', async () => {
const unreadableFile = path.join(
fixtures.testDirectory,
'unreadable.txt'
)
const unreadableFile = path.join(fixtures.testDirectory, 'unreadable.txt')
fs.writeFileSync(unreadableFile, 'secret')
fs.chmodSync(unreadableFile, 0o000)