Skip to content

Commit

Permalink
fix(fw): return False if names are unequal
Browse files Browse the repository at this point in the history
Co-authored-by: Mario Vega <[email protected]>
  • Loading branch information
danceratopz and marioevz authored Mar 26, 2024
1 parent ef380cd commit 84e3072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ethereum_test_tools/vm/opcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __eq__(self, other):
"""
if isinstance(other, OpcodeMacroBase):
return self._name_ == other._name_
return NotImplemented
return False


class Opcode(OpcodeMacroBase):
Expand Down

0 comments on commit 84e3072

Please sign in to comment.