@@ -40,10 +40,10 @@ stopifnot(inherits(args, "error"))
4040
4141print(parallelly :: availableCores , call = FALSE )
4242
43- options(future.p2p .tests.cmdargs = character (0L ))
43+ options(parallelly .tests.cmdargs = character (0L ))
4444print(parallelly :: availableCores , call = TRUE )
4545
46- options(future.p2p .tests.cmdargs = c(" --max=4" ))
46+ options(parallelly .tests.cmdargs = c(" --max=4" ))
4747print(parallelly :: availableCores , call = TRUE )
4848
4949
@@ -68,28 +68,28 @@ output(list(abc = 42))
6868output(c(abc = 42 ))
6969
7070
71- options(future.p2p .tests.cmdargs = character (0L ))
71+ options(parallelly .tests.cmdargs = character (0L ))
7272void <- print(fcn )
7373
74- options(future.p2p .tests.cmdargs = c(" --abc=0" , " --def=3.14" ))
74+ options(parallelly .tests.cmdargs = c(" --abc=0" , " --def=3.14" ))
7575void <- print(fcn )
7676
77- options(future.p2p .tests.cmdargs = c(" --abc=-1" , " --def=3.14" ))
77+ options(parallelly .tests.cmdargs = c(" --abc=-1" , " --def=3.14" ))
7878void <- print(fcn )
7979
80- options(future.p2p .tests.cmdargs = c(" --abc=+1" , " --def=3.14" ))
80+ options(parallelly .tests.cmdargs = c(" --abc=+1" , " --def=3.14" ))
8181void <- print(fcn )
8282
8383parallelly ::: cli_fcn_output(fcn ) <- utils :: str
84- options(future.p2p .tests.cmdargs = c(" --abc=+1" , " --def=3.14" ))
84+ options(parallelly .tests.cmdargs = c(" --abc=+1" , " --def=3.14" ))
8585void <- print(fcn )
8686
8787parallelly ::: cli_fcn(fcn ) <- list (structure(parallelly ::: cli_arg_integer(" abc" ), type = " unknown" ))
8888void <- tryCatch(print(fcn ), error = identity )
8989print(void )
9090stopifnot(inherits(void , " error" ))
9191
92- options(future.p2p .tests.cmdargs = NULL )
92+ options(parallelly .tests.cmdargs = NULL )
9393
9494
9595res <- tryCatch(parallelly ::: cli_prune(), error = identity )
0 commit comments