Skip to content

Commit

Permalink
Tmp
Browse files Browse the repository at this point in the history
Signed-off-by: Enno Gotthold <[email protected]>
  • Loading branch information
SchoolGuy committed Aug 17, 2024
1 parent 1d202bb commit bde7460
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ func NewStubHTTPClient(t *testing.T) *StubHTTPClient {
}

func removeLineBreaks(input []byte) []byte {
str := strings.Replace(string(input), "\r", "\u00A0", -1)
str = strings.Replace(str, "\n", "\u00A1", -1)
str := strings.Replace(string(input), "\r", "", -1)
// str = strings.Replace(str, "\n", "\u00A1", -1)
return []byte(str)
}

Expand Down

0 comments on commit bde7460

Please sign in to comment.