Skip to content

Commit

Permalink
Fix base64 string for s3 test
Browse files Browse the repository at this point in the history
  • Loading branch information
busma13 committed Jun 26, 2024
1 parent de37e0a commit 857cfce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/test/cases/assets/simple-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ describe('s3 asset storage', () => {

const response = await getS3Object(s3client, { Bucket: bucketName, Key: `${assetId}.zip` });
const base64 = await response.Body?.transformToString('base64');
expect(base64).toStartWith('UEsDBAoAAAAAAAs6O');
expect(base64).toStartWith('UEsDBBQAAgAIAFBl0');
});

it('does not create the "blob" field when storing asset metadata in ES', async () => {
Expand Down

0 comments on commit 857cfce

Please sign in to comment.