From ff8ef1a36854852e15d0317cce6623991f4e9132 Mon Sep 17 00:00:00 2001 From: mohamed82008 Date: Mon, 23 Sep 2019 01:43:10 +1000 Subject: [PATCH] typo fix in broken tests --- test/runtests.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index e4b42e51..9ef300aa 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -206,8 +206,8 @@ end DistSpec(:((n1, n2)->MatrixBeta(dim, n1, n2)), (dim, dim), beta_mat), ] broken_matrix_cont_dists = [ - DistSpec(:Wishart, (1.0, cov_mat), cov_mat), - DistSpec(:InverseWishart, (1.0, cov_mat), cov_mat), + DistSpec(:Wishart, (dim, cov_mat), cov_mat), + DistSpec(:InverseWishart, (dim, cov_mat), cov_mat), DistSpec(:MatrixNormal, (cov_mat, cov_mat, cov_mat), cov_mat), DistSpec(:(()->MatrixNormal(dim, dim)), (), cov_mat), DistSpec(:MatrixTDist, (1.0, cov_mat, cov_mat, cov_mat), cov_mat),