diff --git a/test/server/graphql/v2/mutation/UploadedFileMutations.test.ts b/test/server/graphql/v2/mutation/UploadedFileMutations.test.ts index f4004786c12..75183400720 100644 --- a/test/server/graphql/v2/mutation/UploadedFileMutations.test.ts +++ b/test/server/graphql/v2/mutation/UploadedFileMutations.test.ts @@ -95,7 +95,7 @@ describe('server/graphql/v2/mutation/UploadedFileMutations', () => { expect(result.data.uploadFile[0].parsingResult).to.be.null; expect(result.data.uploadFile[0].file.name).to.eq('camera.png'); expect(result.data.uploadFile[0].file.type).to.eq('image/png'); - expect(result.data.uploadFile[0].file.size).to.eq(2923); // Initial was 3628, but we've stripped the metadata + expect(result.data.uploadFile[0].file.size).to.eq(2918); // Initial was 3628, but we've stripped the metadata }); describe('with parseDocument', () => {