Skip to content

Commit

Permalink
fix: replace character with '?'
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil committed Jan 4, 2025
1 parent 7180647 commit 3e27b19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/neotest-golang/lib/sanitize.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function M.sanitize_string(str)
else
-- Optionally replace binary chars with a placeholder
-- This helps identify where binary data was removed
-- sanitized_string = sanitized_string .. "·"
sanitized_string = sanitized_string .. "?"
end
end
return sanitized_string
Expand Down

0 comments on commit 3e27b19

Please sign in to comment.