Skip to content

Commit

Permalink
Style code
Browse files Browse the repository at this point in the history
  • Loading branch information
Jennit07 authored and github-actions[bot] committed Jan 22, 2025
1 parent ad27d39 commit d50947a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion R/process_tests_it_chi_deaths.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
process_tests_it_chi_deaths <- function(data, update = previous_update()) {
comparison <- produce_test_comparison(
old_data = produce_it_chi_deaths_tests(
read_file(get_slf_chi_deaths_path(update = update))),
read_file(get_slf_chi_deaths_path(update = update))
),
new_data = produce_it_chi_deaths_tests(data)
) %>%
write_tests_xlsx(sheet_name = "it_chi_deaths", workbook_name = "lookup")
Expand Down
1 change: 0 additions & 1 deletion R/process_tests_ltcs.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#'
#' @export
process_tests_ltcs <- function(data, year) {

# Find and flag any duplicate chis and chi/postcode combinations
duplicates <- data %>%
dplyr::summarise(
Expand Down
4 changes: 2 additions & 2 deletions R/process_tests_sc_demographics.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
#'
#' @export
process_tests_sc_demographics <- function(data) {

comparison <- produce_test_comparison(
old_data = produce_sc_demog_lookup_tests(
read_file(get_sc_demog_lookup_path(update = previous_update()))),
read_file(get_sc_demog_lookup_path(update = previous_update()))
),
new_data = produce_sc_demog_lookup_tests(
data
)
Expand Down

0 comments on commit d50947a

Please sign in to comment.