Skip to content

Commit

Permalink
Avoid base64 functions in nanonext
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau committed Jun 18, 2024
1 parent eafad02 commit fc5fe45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test-crew_controller_local.R
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ crew_test("crew_controller_local()", {
expect_false(exists(x = ".crew_y", envir = globalenv()))
# package task
x$push(
command = base64enc(arg),
command = paste0(arg, "y"),
data = list(arg = "x"),
packages = "nanonext"
)
x$wait(seconds_timeout = 5)
out <- x$pop()
expect_equal(out$result[[1]], nanonext::base64enc("x"))
expect_equal(out$result[[1]], "xy")
}
# terminate
handle <- x$launcher$workers$handle[[1]]
Expand Down

0 comments on commit fc5fe45

Please sign in to comment.