We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32bc396 commit b7ef93fCopy full SHA for b7ef93f
2 files changed
src/queries/s3.js
@@ -194,7 +194,7 @@ export const pageObjectsFromS3 = ({
194
.parallel(parallel);
195
};
196
197
-export const headS3Object= ({
+export const headS3Object = ({
198
id: pipelineId,
199
debug = d('s3'),
200
bucketName = process.env.BUCKET_NAME,
test/unit/queries/s3.test.js
@@ -368,7 +368,7 @@ describe('queries/s3.js', () => {
368
.done(done);
369
});
370
it('should head object missing headRequestField', (done) => {
371
- const stub = sinon.stub(Connector.prototype, 'headObject').resolves({
+ sinon.stub(Connector.prototype, 'headObject').resolves({
372
Metadata: {
373
testkey: '1',
374
},
0 commit comments