Skip to content

Commit

Permalink
Adjust test
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel- committed Nov 25, 2024
1 parent 6526f6f commit 28ecf49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/ark/tests/kernel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -545,9 +545,9 @@ fn test_env_vars() {
let frontend = DummyArkFrontend::lock();

let code = "stopifnot(
nzchar(Sys.getenv('R_SHARE_DIR')),
nzchar(Sys.getenv('R_INCLUDE_DIR')),
nzchar(Sys.getenv('R_DOC_DIR'))
identical(Sys.getenv('R_SHARE_DIR'), R.home('share')),
identical(Sys.getenv('R_INCLUDE_DIR'), R.home('include')),
identical(Sys.getenv('R_DOC_DIR'), R.home('doc'))
)";
frontend.send_execute_request(code, ExecuteRequestOptions::default());
frontend.recv_iopub_busy();
Expand Down

0 comments on commit 28ecf49

Please sign in to comment.