Skip to content

Commit 40e70c4

Browse files
Fix mistaken ')' alignment
1 parent 36f8c73 commit 40e70c4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/testthat/test_methods.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,8 @@ test_that("print and summary methods ok for mcmc and vb", {
594594
expect_output(print(s), "stan_glmer")
595595
expect_output(
596596
print(s),
597-
paste(rstanarm:::posterior_sample_size(example_model)), "(posterior sample size)"
597+
paste(rstanarm:::posterior_sample_size(example_model), "(posterior sample size)"),
598+
fixed = TRUE
598599
)
599600
expect_identical(attr(s, "algorithm"), "sampling")
600601
expect_identical(colnames(s), colnames(d))

0 commit comments

Comments
 (0)