From fd2b9c496968e7c59542e343c99342cc9f76ea8d Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Tue, 19 Mar 2024 22:28:57 -0500 Subject: [PATCH] oops --- test/mixedmodels.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/mixedmodels.jl b/test/mixedmodels.jl index 11a0caa..de8c6f5 100644 --- a/test/mixedmodels.jl +++ b/test/mixedmodels.jl @@ -1,11 +1,11 @@ using DataFrames using Effects using MixedModels -using Random +using StableRNGs using Suppressor using Test -rng = MersenneTwister(0) +rng = StableRNG(42) x = rand(rng, 100) data = (x = x, x2 = 1.5 .* x, y = rand(rng, [0,1], 100), z = repeat('A':'T', 5)) model = @suppress fit(MixedModel, @formula(y ~ x + x2 + (1|z)), data; progress=false)