We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0245691 + c141f20 commit b8626d6Copy full SHA for b8626d6
tests/functional/raw-node/test/trailingChecksums.js
@@ -12,9 +12,10 @@ const objDataWithTrailingChecksum = '10\r\n0123456789abcdef\r\n' +
12
'0\r\nx-amz-checksum-crc64nvme:YeIDuLa7tU0=\r\n';
13
const objDataWithoutTrailingChecksum = '0123456789abcdef0123456789abcdef';
14
15
+const config = require('../../config.json');
16
const authCredentials = {
- accessKey: 'accessKey1',
17
- secretKey: 'verySecretKey1',
+ accessKey: config.accessKey,
18
+ secretKey: config.secretKey,
19
};
20
21
const itSkipIfAWS = process.env.AWS_ON_AIR ? it.skip : it;
0 commit comments