Skip to content

Commit

Permalink
fix: coverage bug
Browse files Browse the repository at this point in the history
filename is now Path
  • Loading branch information
charles-cooper committed Mar 1, 2024
1 parent 21036d4 commit 53fde25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boa/coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def dynamic_source_filename(self, filename, frame):
if contract is None:
return None

return contract.filename
return str(contract.filename)

def has_dynamic_source_filename(self):
return True
Expand Down

0 comments on commit 53fde25

Please sign in to comment.