Skip to content

Commit

Permalink
use parallel not tcltk for GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelChirico committed Dec 21, 2024
1 parent 11c783b commit 452cacc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/testthat/stale_package_test_scripts/simple.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
library(stats)
require(tools)
library(tcltk) # unused
library(parallel) # unused

density(rnorm(100))

Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test_that('stale_package_check works', {
paste0("\t", toString(sort(c("density", "rnorm")))),
"Functions matched from package tools:",
"\tfile_ext",
"**No exported functions matched from tcltk**"),
"**No exported functions matched from parallel**"),
collapse = '\n'
),
fixed = TRUE
Expand Down

0 comments on commit 452cacc

Please sign in to comment.