Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Dec 2, 2024
1 parent b4e2b98 commit 31b3024
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/multipleBackend/routes/routeBackbeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@ describe('backbeat routes', () => {
.then(() => s3.deleteBucket({ Bucket: TEST_ENCRYPTED_BUCKET }).promise())
.then(() => bucketUtil.empty(NONVERSIONED_BUCKET))
.then(() => s3.deleteBucket({ Bucket: NONVERSIONED_BUCKET }).promise())
.then(() => done(), err => done(err))
);

describe('null version', () => {
Expand All @@ -295,13 +294,11 @@ describe('backbeat routes', () => {
beforeEach(done =>

Check failure on line 294 in tests/multipleBackend/routes/routeBackbeat.js

View workflow job for this annotation

GitHub Actions / linting-coverage

'done' is defined but never used
bucketUtil.emptyIfExists(BUCKET_FOR_NULL_VERSION)
.then(() => s3.createBucket({ Bucket: BUCKET_FOR_NULL_VERSION }).promise())
.then(() => done(), err => done(err))
);

afterEach(done =>

Check failure on line 299 in tests/multipleBackend/routes/routeBackbeat.js

View workflow job for this annotation

GitHub Actions / linting-coverage

'done' is defined but never used
bucketUtil.empty(BUCKET_FOR_NULL_VERSION)
.then(() => s3.deleteBucket({ Bucket: BUCKET_FOR_NULL_VERSION }).promise())
.then(() => done(), err => done(err))
);

it('should update metadata of a current null version', done => {
Expand Down

0 comments on commit 31b3024

Please sign in to comment.