From 0a9828ffb31cbdc81d509377b73e7dcc986e15db Mon Sep 17 00:00:00 2001 From: Daniel Kennedy Date: Tue, 24 Feb 2026 14:32:56 -0500 Subject: [PATCH] Fix linting issue --- packages/artifact/__tests__/stream.test.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/packages/artifact/__tests__/stream.test.ts b/packages/artifact/__tests__/stream.test.ts index a5a6c417..719512a9 100644 --- a/packages/artifact/__tests__/stream.test.ts +++ b/packages/artifact/__tests__/stream.test.ts @@ -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)