Skip to content

Commit cdfbd69

Browse files
committed
Update test values
1 parent cb95407 commit cdfbd69

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/testthat/test-install.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ test_that("install_cmdstan() works with version and release_url", {
100100
install_cmdstan(dir = dir, overwrite = TRUE, cores = 4,
101101
release_url = "https://github.com/stan-dev/cmdstan/releases/download/v2.35.0/cmdstan-2.35.0.tar.gz",
102102
wsl = os_is_wsl()),
103-
"Compiling, linking C++ code",
103+
"Compiling C++ code",
104104
fixed = TRUE
105105
),
106106
"Finished installing CmdStan",
@@ -114,7 +114,7 @@ test_that("install_cmdstan() works with version and release_url", {
114114
# the URL is intentionally invalid to test that the version has higher priority
115115
release_url = "https://github.com/stan-dev/cmdstan/releases/download/v2.27.3/cmdstan-2.27.3.tar.gz",
116116
wsl = os_is_wsl()),
117-
"Compiling, linking C++ code",
117+
"Compiling C++ code",
118118
fixed = TRUE
119119
),
120120
"Finished installing CmdStan",
@@ -123,7 +123,7 @@ test_that("install_cmdstan() works with version and release_url", {
123123
"version and release_url shouldn't both be specified",
124124
fixed = TRUE
125125
)
126-
expect_true(dir.exists(file.path(dir, "cmdstan-2.33.0")))
126+
expect_true(dir.exists(file.path(dir, "cmdstan-2.35.0")))
127127
set_cmdstan_path(cmdstan_default_path())
128128
})
129129

@@ -265,7 +265,7 @@ test_that("Install from release file works", {
265265
install_cmdstan(dir = dir, cores = 2, quiet = FALSE, overwrite = TRUE,
266266
release_file = destfile,
267267
wsl = os_is_wsl()),
268-
"Compiling, linking C++ code",
268+
"Compiling C++ code",
269269
fixed = TRUE
270270
),
271271
"CmdStan path set",

0 commit comments

Comments
 (0)