1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-09 08:52:15 +02:00

unit test fix

This commit is contained in:
2022-10-18 23:03:16 +02:00
parent e5e6d2200d
commit 3fc39198d0
5 changed files with 5 additions and 5 deletions

View File

@ -124,7 +124,7 @@ add_custom_antimicrobials <- function(x) {
}
for (col in colnames(x)) {
# assign new values
new_df[, col] <- x[, col, drop = TRUE]
new_df[, col] <- x[, col, drop = TRUE]
}
AMR_env$AB_lookup <- unique(rbind(AMR_env$AB_lookup, new_df))
} else {