We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1ca9af commit c3a4685Copy full SHA for c3a4685
tests/functional/aws-node-sdk/test/service/get.js
@@ -58,7 +58,7 @@ describeFn('GET Service - AWS.S3.listBuckets', function getService() {
58
});
59
60
it('should return 403 and AccessDenied', async () => {
61
- const s3Unauth = unauthenticatedBucketUtil.s3
+ const s3Unauth = unauthenticatedBucketUtil.s3;
62
63
try {
64
await s3Unauth.send(new ListBucketsCommand({}));
@@ -151,7 +151,7 @@ describeFn('GET Service - AWS.S3.listBuckets', function getService() {
151
process.stdout.write(`err creating buckets: ${err}\n`);
152
return next(err);
153
}
154
- next(err);
+ return next(err);
155
})
156
], done);
157
0 commit comments