Skip to content

Commit

Permalink
speling
Browse files Browse the repository at this point in the history
Signed-off-by: Danno Ferrin <danno@numisight.com>
  • Loading branch information
shemnon committed May 3, 2024
1 parent bfbf248 commit 161b07d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/prague/eip663_dupn_swapn_exchange/test_exchange.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ def test_exchange_all_valid_immediates(
for e in range(0, n):
a = (e >> 4) + 1
b = (e & 0x0F) + 1 + a
tmp = values_rotated[a]
temp = values_rotated[a]
values_rotated[a] = values_rotated[b]
values_rotated[b] = tmp
values_rotated[b] = temp

post = {tx.to: Account(storage=dict(zip(range(0, s), reversed(values_rotated))))}

Expand Down

0 comments on commit 161b07d

Please sign in to comment.