Skip to content

Commit

Permalink
fix: non-character argument
Browse files Browse the repository at this point in the history
  • Loading branch information
cryolune authored Jun 17, 2021
1 parent 4956c6b commit 1e044de
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 1e044de

Please sign in to comment.