From 4700d43616b0363810c94ee621e1f2fd5af3562f Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Tue, 16 Jul 2024 11:46:56 +0200 Subject: [PATCH] suppress more --- test/predict.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/predict.jl b/test/predict.jl index a55272bbc..8307bd5c7 100644 --- a/test/predict.jl +++ b/test/predict.jl @@ -143,7 +143,7 @@ end slp1 = subset(slp, :days => ByRow(>(0))) # this model probably doesn't make much sense, but it has two # variables on the left hand side in a FunctionTerm - m = fit(MixedModel, @formula(reaction / days ~ 1 + (1|subj)), slp1) + m = @suppress fit(MixedModel, @formula(reaction / days ~ 1 + (1|subj)), slp1) # make sure that we're getting the transformation @test response(m) ≈ slp1.reaction ./ slp1.days @test_throws ArgumentError predict(m, slp[:, Not(:reaction)]) @@ -154,7 +154,7 @@ end @test predict(m, slp1) ≈ fitted(m) - m = fit(MixedModel, @formula(log10(reaction) ~ 1 + days + (1|subj)), slp1) + m = @suppress fit(MixedModel, @formula(log10(reaction) ~ 1 + days + (1|subj)), slp1) # make sure that we're getting the transformation @test response(m) ≈ log10.(slp1.reaction) @test_throws ArgumentError predict(m, slp[:, Not(:reaction)])