Skip to content

Commit

Permalink
fix: use another common replacement character
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil committed Jan 4, 2025
1 parent 476dcbf commit 91b99d7
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 @@ -32,7 +32,7 @@ function M.sanitize_string(str)
if byte == 9 or byte == 10 or (byte >= 32 and byte <= 126) then
sanitized_string = sanitized_string .. string.char(byte)
else
sanitized_string = sanitized_string .. "?"
sanitized_string = sanitized_string .. ""
end
end
return sanitized_string
Expand Down

0 comments on commit 91b99d7

Please sign in to comment.