Skip to content

Commit

Permalink
EDSC-4351: Fixes tests
Browse files Browse the repository at this point in the history
  • Loading branch information
macrouch committed Jan 23, 2025
1 parent 634c119 commit 05db1bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions serverless/src/util/__tests__/getS3Client.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ describe('getS3Client', () => {

const credentials = await result.config.credentials()
expect(credentials).toEqual({
accessKeyId: '12345678',
secretAccessKey: '12345678'
accessKeyId: 'S3RVER',
secretAccessKey: 'S3RVER'
})

const endpoint = await result.config.endpoint()
expect(endpoint).toEqual({
hostname: 'localhost',
port: 9000,
port: 4569,
protocol: 'http:',
path: '/',
query: undefined
Expand Down

0 comments on commit 05db1bc

Please sign in to comment.