Skip to content

Commit

Permalink
lol *actually* fix the linebreaks
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewheiss committed Jun 3, 2024
1 parent c0fc149 commit 76c35e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/helper.R
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ extract_output <- function(raw_output) {
actual_output <- paste0(raw_output[start_index:end_index], collapse = "\n")

# Remove Windows's \r linebreaks from the output
actual_output <- gsub("\r\n", "\n", actual_output)
actual_output <- gsub("\r", "", actual_output)

actual_output
}
Expand Down

0 comments on commit 76c35e6

Please sign in to comment.