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 ba06c51 commit a9ab662
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/multipleBackend/routes/routeBackbeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -295,14 +295,14 @@ describe('backbeat routes', () => {

beforeEach(done =>
bucketUtil.emptyIfExists(BUCKET_FOR_NULL_VERSION)
.then(() => s3.createBucket({ Bucket: BUCKET_FOR_NULL_VERSION }).promise())
.then(() => s3.createBucket({ Bucket: BUCKET_FOR_NULL_VERSION }))
.then(() => done())
.catch(done)
);

afterEach(done =>
bucketUtil.empty(BUCKET_FOR_NULL_VERSION)
.then(() => s3.deleteBucket({ Bucket: BUCKET_FOR_NULL_VERSION }).promise())
.then(() => s3.deleteBucket({ Bucket: BUCKET_FOR_NULL_VERSION }))
.then(() => done())
.catch(done)
);
Expand Down

0 comments on commit a9ab662

Please sign in to comment.