Skip to content

Commit

Permalink
chore: fix symbol error
Browse files Browse the repository at this point in the history
Signed-off-by: liangmulu <[email protected]>
  • Loading branch information
liangmulu committed Sep 13, 2024
1 parent 8201bfd commit 1c69bd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mythril/laser/ethereum/state/memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def get_word_at(self, index: int) -> Union[int, BitVec]:
return result

def write_word_at(self, index: int, value: Union[int, BitVec, bool, Bool]) -> None:
"""Writes a 32 byte word to memory at the specified index`
"""Writes a 32 byte word to memory at the specified index
:param index: index to write to
:param value: the value to write to memory
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests/solc_settings_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ def test_negative_solc_settings():
command = f"python3 {MYTH} analyze {file_path} --solv 0.8.0"
output = check_output(command, shell=True, stderr=STDOUT).decode("UTF-8")
assert (
"""ParserError: Source "@openzeppelin/contracts/token/PRC20/PRC20.sol"""
"""ParserError: Source "@openzeppelin/contracts/token/PRC20/PRC20.sol""""
in output
)

0 comments on commit 1c69bd4

Please sign in to comment.