From cfe54ce0b4cae73a1d264aa966da0aafb8a83b16 Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Thu, 6 Oct 2022 09:23:52 -0500 Subject: [PATCH] Update test/misc.jl Co-authored-by: Dave Kleinschmidt --- test/misc.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/misc.jl b/test/misc.jl index e36c71f7d..1a89d4b5d 100644 --- a/test/misc.jl +++ b/test/misc.jl @@ -8,7 +8,7 @@ using MixedModels: dataset @test MixedModel(@formula(yield ~ 0 + (1|batch)), dyestuff) isa LinearMixedModel @test MixedModel(@formula(yield ~ 1 + (1|batch)), dyestuff) isa LinearMixedModel - @test_throws MixedModels._MISSING_RE_ERROR MixedModel(@formula(yield ~ 0 + batch), dyestuff) + @test_throws MixedModels._MISSING_RE_ERROR MixedModel(@formula(yield ~ 0 + batch), dyestuff) @test_throws MixedModels._MISSING_RE_ERROR MixedModel(@formula(yield ~ 1), dyestuff) @test MixedModel(@formula(yield ~ 0 + (1|batch)), dyestuff, Poisson()) isa GeneralizedLinearMixedModel