Skip to content

Commit

Permalink
fix summary symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
zsigmas committed Jun 5, 2024
1 parent c790faa commit aee652f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/test_qc_pkg.R
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ summary <- c(
summary,
purrr::imap_chr(success, ~{
symbol <- "\U02753"
symbol <- if (isTRUE(.x)) "\U02705"
symbol <- if (isFALSE(.x)) "\U0274C"
symbol <- if (is.na(.x)) "\U02757"
if (isTRUE(.x)) symbol <- "\U02705"
if (isFALSE(.x)) symbol <- "\U0274C"
if (is.na(.x)) symbol <- "\U02757"
paste(" - ", symbol, .y)
})
)
Expand Down

0 comments on commit aee652f

Please sign in to comment.