Skip to content

Commit

Permalink
Attempt to solve GitHub test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Puzzled-Face committed Oct 3, 2024
1 parent aad8936 commit b4f6c7e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/Data-methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,9 @@ setMethod(
) %>%
dplyr::rowwise() %>%
dplyr::mutate(
Cat0 = !any(dplyr::across(c(tidyselect::starts_with("Cat"), -Cat0), any))
Tmp = !any(dplyr::across(c(tidyselect::starts_with("Cat"), -Cat0), any)),
# Direct assignment fails on GitHub
Cat0 = Tmp
) %>%
dplyr::ungroup() %>%
h_tidy_class(x)
Expand Down

0 comments on commit b4f6c7e

Please sign in to comment.