Skip to content

Commit

Permalink
Merge pull request #16 from theakhiljha/fix-mutate()-error
Browse files Browse the repository at this point in the history
fix issue #15: non-character argument
  • Loading branch information
mdietze committed Jun 21, 2021
2 parents 4956c6b + 1e044de commit 0399eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/run-test-list.R
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ test_list <- read.csv("inst/integration-test-list.csv", comment.char = "#",
end_date = if_else(is.na(end_date), default_end_date, as.character(end_date)),
# TODO: Add more inputs here
inputs = pmap(., configure_inputs),
pfts = strsplit(pfts, "|", fixed = TRUE),
pfts = strsplit(as.character(pfts), "|", fixed = TRUE),
# ED2-specific customizations
workflow_list_mods = if_else(
model_name == "ED2.2",
Expand Down

0 comments on commit 0399eba

Please sign in to comment.