1
0
Fork 0
mirror of https://github.com/MillironX/beefblup.git synced 2024-11-13 03:03:08 +00:00

Fix tests

This commit is contained in:
Thomas A. Christensen II 2021-08-28 19:28:25 -05:00
parent 97bd43323d
commit 16aae0469e
Signed by: millironx
GPG key ID: 139C07724802BC5D

View file

@ -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