Skip to content

Commit

Permalink
What about the windows version?
Browse files Browse the repository at this point in the history
  • Loading branch information
DavisVaughan committed Sep 25, 2024
1 parent c4f1640 commit 5e13966
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion crates/ark/src/data_explorer/format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,13 @@ mod tests {
let _ = harp::parse_eval_global(r#"rm(text)"#).unwrap();
assert_eq!(data, "UTF-8".to_string());

let data = harp::parse_eval_global("Sys.getlocale()").unwrap();
// let data = harp::parse_eval_global("Sys.getlocale()").unwrap();
// let data = String::try_from(data).unwrap();
// assert_eq!(data, "wrong".to_string());

let data =
harp::parse_eval_global("paste0(capture.output(sessionInfo()), collapse = ' ')")
.unwrap();
let data = String::try_from(data).unwrap();
assert_eq!(data, "wrong".to_string());

Expand Down

0 comments on commit 5e13966

Please sign in to comment.