From 1e225eb7701ae11ade6cc6a9c017a00355e42f67 Mon Sep 17 00:00:00 2001 From: e-ngo Date: Wed, 7 Aug 2019 16:33:30 -0700 Subject: [PATCH] Ran black... --- tests/instructions/extcodehash_test.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/instructions/extcodehash_test.py b/tests/instructions/extcodehash_test.py index ff1fff52..e1ea30c1 100644 --- a/tests/instructions/extcodehash_test.py +++ b/tests/instructions/extcodehash_test.py @@ -36,10 +36,7 @@ def test_extcodehash_concrete(): # If account code does not exist, return hash of empty set. og_state.mstate.stack = [symbol_factory.BitVecVal(1000, 256)] new_state = instruction.evaluate(og_state)[0] - assert ( - hex(new_state.mstate.stack[-1].value) - == get_code_hash("") - ) + assert hex(new_state.mstate.stack[-1].value) == get_code_hash("") # If account code exists, return hash of the code. og_state.mstate.stack = [symbol_factory.BitVecVal(101, 256)]