Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pLabarta committed Jan 17, 2025
1 parent 1cf7f4a commit f5cff4e
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,7 @@ describeSuite({
}

results.forEach((result, index) => {
const diff = index === 0
? 0n
: result.gasWithAL - results[index - 1].gasWithAL;
const diff = index === 0 ? 0n : result.gasWithAL - results[index - 1].gasWithAL;
if (result.addresses > 4) {
expect(diff).toBe(2400n);
}
Expand Down

0 comments on commit f5cff4e

Please sign in to comment.