Skip to content

Commit b7634b0

Browse files
committed
Merge branch 'master' into rtools-make-all
2 parents 36e2329 + 2fee6ca commit b7634b0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/R-CMD-check-wsl.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
extra-packages: any::rcmdcheck, local::.
4747

48-
- uses: Vampire/setup-wsl@v4
48+
- uses: Vampire/setup-wsl@v5
4949
with:
5050
distribution: Ubuntu-22.04
5151
wsl-version: 2

tests/testthat/test-fit-gq.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ test_that("print() method works after gq", {
9090
# make sure the row order is correct
9191
out <- capture.output(fit_gq$print(c("y_rep[1]", "sum_y", "y_rep[3]")))
9292
expect_length(out, 4)
93-
expect_match(out[1], " variable", out[1])
93+
expect_match(out[1], " variable")
9494
expect_match(out[2], " y_rep[1]", fixed = TRUE)
9595
expect_match(out[3], " sum_y")
9696
expect_match(out[4], " y_rep[3]", fixed = TRUE)

tests/testthat/test-fit-mcmc.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ test_that("print() method works after mcmc", {
151151
# make sure the row order is correct
152152
out <- capture.output(fit$print(c("theta[1]", "tau", "mu", "theta_raw[3]")))
153153
expect_length(out, 5)
154-
expect_match(out[1], " variable", out[1])
154+
expect_match(out[1], " variable")
155155
expect_match(out[2], " theta[1]", fixed = TRUE)
156156
expect_match(out[3], " tau")
157157
expect_match(out[4], " mu")

0 commit comments

Comments
 (0)