Skip to content

Commit

Permalink
fix incomplete method renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
katrinabrock committed Dec 19, 2024
1 parent 66aa1b4 commit 93bd277
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/testthat/test-model-internal.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ test_that("parse_exe_info_string works", {
)
})

test_that("validate_precompile_cpp_options works", {
test_that("validate_cpp_options works", {
expect_equal_ignore_order(
validate_precompile_cpp_options(list(
validate_cpp_options(list(
Stan_Threads = TRUE,
STAN_OPENCL = NULL,
aBc = FALSE
Expand All @@ -34,7 +34,7 @@ test_that("validate_precompile_cpp_options works", {
abc = FALSE
)
)
expect_warning(validate_precompile_cpp_options(list(STAN_OPENCL = FALSE)))
expect_warning(validate_cpp_options(list(STAN_OPENCL = FALSE)))
})


Expand Down

0 comments on commit 93bd277

Please sign in to comment.