From 641232708a1213ffc1f8c47c60db08a82878c244 Mon Sep 17 00:00:00 2001 From: gc <30398469+gc@users.noreply.github.com> Date: Wed, 3 Jul 2024 10:45:16 +1000 Subject: [PATCH] lint --- tests/integration/grandExchange.test.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/integration/grandExchange.test.ts b/tests/integration/grandExchange.test.ts index 7e59fbee10..849f452ed5 100644 --- a/tests/integration/grandExchange.test.ts +++ b/tests/integration/grandExchange.test.ts @@ -67,19 +67,19 @@ describe('Grand Exchange', async () => { const commandPromises = new PQueue({ concurrency: 20 }); for (const user of shuffleArr(users)) { commandPromises.add(async () => { - for (let i = 0; i < 5;i++) { + for (let i = 0; i < 5; i++) { const method = randArrItem(['buy', 'sell']); - const quantity = randArrItem(quantities); - const price = randArrItem(prices); - for (const item of itemPool) { - await user.runCommand(geCommand, { - [method]: { - item, - quantity, - price - } - }); - } + const quantity = randArrItem(quantities); + const price = randArrItem(prices); + for (const item of itemPool) { + await user.runCommand(geCommand, { + [method]: { + item, + quantity, + price + } + }); + } } }); }