Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Jan 20, 2025
1 parent ff20873 commit d8d977a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/utils/S3UtilsMongoClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -2465,7 +2465,7 @@ describe('S3UtilsMongoClient, tests', () => {
if (inflights) {
const mock = sinon.stub(client, 'readStorageConsumptionInflights');
mock.onFirstCall().returns(Promise.resolve(inflights));
mock.onSecondCall().returns(Promise.resolve(inflights * 1.5));
mock.onSecondCall().returns(Promise.resolve((inflights * BigInt(3)) / BigInt(2)));
}
return client.getObjectMDStats(
bucketName,
Expand Down

0 comments on commit d8d977a

Please sign in to comment.