Skip to content

Commit 309dfc5

Browse files
committed
Fix test more
1 parent 8806597 commit 309dfc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/varinfo.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -876,8 +876,8 @@ end
876876
vi_single = VarInfo()
877877
vi_single = push!!(vi_single, vn, 1.0, Normal())
878878
vi_double = VarInfo()
879-
vi_double = push!!(vi_double, vn, [2.0, 3.0], Normal())
880-
@test merge(vi_single, vi_double)[vn] == [2.0, 3.0]
879+
vi_double = push!!(vi_double, vn, [0.5, 0.6], Dirichlet(2, 1.0))
880+
@test merge(vi_single, vi_double)[vn] == [0.5, 0.6]
881881
@test merge(vi_double, vi_single)[vn] == 1.0
882882
end
883883
end

0 commit comments

Comments
 (0)