Skip to content

Commit

Permalink
return cannot be RHS
Browse files Browse the repository at this point in the history
  • Loading branch information
aghaynes committed Apr 8, 2024
1 parent 9b491d1 commit 8d1068e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions R/gen_tests_table.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ gen_tests_table <- function(tests = NULL, ...){
if(is.null(tests)){
tests <- get_test_reports()
}
tests |>
issues_to_df(extract_elements_test) |>
return()
out <- tests |>
issues_to_df(extract_elements_test)

return(out)

}

0 comments on commit 8d1068e

Please sign in to comment.