Skip to content

Commit

Permalink
specify year in indiv tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jennit07 committed Nov 27, 2024
1 parent 7dcc78b commit 56f0ffb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions R/process_tests_individual_file.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,13 @@ process_tests_individual_file <- function(data, year) {
old_data = produce_individual_file_tests(old_data),
new_data = produce_individual_file_tests(data)
) %>%
write_tests_xlsx(sheet_name = stringr::str_glue({
"indiv_file_{year}"
}), workbook_name = "indiv_file")
write_tests_xlsx(
sheet_name = stringr::str_glue({
"indiv_file_{year}"
}),
year = year,
workbook_name = "indiv_file"
)

return(comparison)
}
Expand Down

0 comments on commit 56f0ffb

Please sign in to comment.