Skip to content

Commit

Permalink
chore: temporarily remove logging gsub
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil committed Jul 22, 2024
1 parent 33a3dfd commit 568d71e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lua/neotest-golang/logging.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ local prefix = "[neotest-golang] "

local function clean_output(str)
-- Replace escaped newlines and tabs with spaces
str = str:gsub("[\n\t]", " ")
-- FIXME: commented out temporarily
-- str = str:gsub("[\n\t]", " ")
-- Collapse multiple spaces into one
str = str:gsub("%s+", " ")
-- str = str:gsub("%s+", " ")
return str
end

Expand Down

0 comments on commit 568d71e

Please sign in to comment.