Skip to content

Commit

Permalink
Add missing r_task (#669)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavisVaughan authored Jan 15, 2025
1 parent 0f5bc87 commit 70bb464
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions crates/ark/tests/data_explorer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -788,18 +788,20 @@ fn test_search_filters() {
// --- search filters ---

// Create a data frame with a bunch of words to use for regex testing.
harp::parse_eval_global(
r#"words <- data.frame(text = c(
"lambent",
"incandescent",
"that will be $10.26",
"pi is 3.14159",
"",
"weasel",
"refrigerator"
))"#,
)
.unwrap();
r_task(|| {
harp::parse_eval_global(
r#"words <- data.frame(text = c(
"lambent",
"incandescent",
"that will be $10.26",
"pi is 3.14159",
"",
"weasel",
"refrigerator"
))"#,
)
.unwrap();
});

// Open the words data set in the data explorer.
let socket = open_data_explorer(String::from("words"));
Expand Down

0 comments on commit 70bb464

Please sign in to comment.