diff --git a/inst/NEWS.Rd b/inst/NEWS.Rd index faee7a197..5c120b810 100644 --- a/inst/NEWS.Rd +++ b/inst/NEWS.Rd @@ -2,7 +2,7 @@ \title{brms News} \encoding{UTF-8} -\section{CHANGES IN VERSION 1.10.0++}{ +\section{CHANGES IN VERSION 1.10.2}{ \subsection{NEW FEATURES}{ \itemize{ \item Allow setting priors on noise-free diff --git a/tests/local/tests.models_new.R b/tests/local/tests.models_new.R index 5fb4d23d3..91f6545ca 100644 --- a/tests/local/tests.models_new.R +++ b/tests/local/tests.models_new.R @@ -78,7 +78,7 @@ test_that("Non-linear model from brm doc works correctly", { x <- rnorm(100) y <- rnorm(100, mean = 2 - 1.5^x, sd = 1) data5 <- data.frame(x, y) - fit5 <- brm(bf(y ~ a1 - a2^x, a1 + a2 ~ 1, nl = TRUE), + fit5 <- brm(bf(y ~ a1 - a2^x, a1 + a2 ~ 1, nl = TRUE), data = data5, prior = c(prior(normal(0, 2), nlpar = a1), prior(normal(0, 2), nlpar = a2)))