Skip to content

Commit

Permalink
fix symbol issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau committed Nov 7, 2024
1 parent d948a59 commit 6ae4c98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions R/class_pipeline.R
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,7 @@ pipeline_targets_init <- function(targets, clone_targets) {
}

pipeline_get_target <- function(pipeline, name) {
out <- .subset2(.subset2(pipeline, "targets"), name)
if (is.raw(out)) {
return(tar_unserialize(out))
}
out
.subset2(.subset2(pipeline, "targets"), name)
}

pipeline_get_names <- function(pipeline) {
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-class_feather.R
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ tar_test("store_row_path()", {
target <- tar_target(x, "x_value", format = "feather")
store <- target$store
file <- target$file
file$path <- "path"
file$path <- "path"
expect_equal(store_row_path(store, file), NA_character_)
})

Expand Down

0 comments on commit 6ae4c98

Please sign in to comment.