Skip to content

Commit f7ff1b0

Browse files
committed
Merge branch 'w/7.70/bugfix/CLDSRV-620/strip-trailing-checksums' into tmp/octopus/w/8.8/bugfix/CLDSRV-620/strip-trailing-checksums
2 parents aa47d04 + b8626d6 commit f7ff1b0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/functional/raw-node/test/trailingChecksums.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ const objDataWithTrailingChecksum = '10\r\n0123456789abcdef\r\n' +
1212
'0\r\nx-amz-checksum-crc64nvme:YeIDuLa7tU0=\r\n';
1313
const objDataWithoutTrailingChecksum = '0123456789abcdef0123456789abcdef';
1414

15+
const config = require('../../config.json');
1516
const authCredentials = {
16-
accessKey: 'accessKey1',
17-
secretKey: 'verySecretKey1',
17+
accessKey: config.accessKey,
18+
secretKey: config.secretKey,
1819
};
1920

2021
const itSkipIfAWS = process.env.AWS_ON_AIR ? it.skip : it;

0 commit comments

Comments
 (0)