From 16aae0469e3a0ef282f62c3c7d71c71de5981420 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Sat, 28 Aug 2021 19:28:25 -0500 Subject: [PATCH] Fix tests --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 1cffe85..c92aa1e 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -17,5 +17,5 @@ using Test id = collect(1:7) dam_id = [missing, missing, missing, missing, 2, 2, missing] sire_id = [missing, missing, 1, 1, 1, missing, missing] - @test BeefBLUP.additiverelationshipmatrix(id, dam, sire) == correctA + @test BeefBLUP.additiverelationshipmatrix(id, dam_id, sire_id) == correctA end