Skip to content

Commit

Permalink
PAGOPA-1529 minor fix to script
Browse files Browse the repository at this point in the history
  • Loading branch information
FedericoRuzzier committed Mar 19, 2024
1 parent f4efe13 commit 013f04a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion performance-test/src/calculator_getFeesMulti.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default function calculator() {

// to give randomness to request in order to avoid caching
const paymentAmount = Math.floor(Math.random() * (100 + __VU) % 100);
const primaryCreditorInstitution = '7777777777' + (int)Math.floor(Math.random() * 10);
const primaryCreditorInstitution = '7777777777' + Math.floor(Math.random() * 10);

let payload = {
"bin": "1005066",
Expand Down

0 comments on commit 013f04a

Please sign in to comment.