Skip to content

Commit

Permalink
Fix py lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sieniven committed Sep 4, 2023
1 parent 00f2053 commit fee869b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/feature_evm_rpc_fee_history.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def test_fee_history(self):
assert_equal(len(history["baseFeePerGas"]), count + 1)
for x in history["reward"]:
assert_equal(len(x), len(reward_percentiles))
assert_equal(x, ['0x2', '0x3', '0x5', '0x7', '0x9', '0xa'])
assert_equal(x, ["0x2", "0x3", "0x5", "0x7", "0x9", "0xa"])

def run_test(self):
self.setup()
Expand Down

0 comments on commit fee869b

Please sign in to comment.