Skip to content

Commit c3a4685

Browse files
committed
fixup lint
1 parent d1ca9af commit c3a4685

File tree

1 file changed

+2
-2
lines changed
  • tests/functional/aws-node-sdk/test/service

1 file changed

+2
-2
lines changed

tests/functional/aws-node-sdk/test/service/get.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describeFn('GET Service - AWS.S3.listBuckets', function getService() {
5858
});
5959

6060
it('should return 403 and AccessDenied', async () => {
61-
const s3Unauth = unauthenticatedBucketUtil.s3
61+
const s3Unauth = unauthenticatedBucketUtil.s3;
6262

6363
try {
6464
await s3Unauth.send(new ListBucketsCommand({}));
@@ -151,7 +151,7 @@ describeFn('GET Service - AWS.S3.listBuckets', function getService() {
151151
process.stdout.write(`err creating buckets: ${err}\n`);
152152
return next(err);
153153
}
154-
next(err);
154+
return next(err);
155155
})
156156
], done);
157157
});

0 commit comments

Comments
 (0)