From 159e035bff4e568b05bc974a9e20f0030559a696 Mon Sep 17 00:00:00 2001 From: Mykola Lukashchuk Date: Thu, 9 Jan 2025 13:54:04 +0100 Subject: [PATCH] test: unmark broken tests --- test/distributions/tensor_dirichlet_test.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/distributions/tensor_dirichlet_test.jl b/test/distributions/tensor_dirichlet_test.jl index c362498c..2775fd16 100644 --- a/test/distributions/tensor_dirichlet_test.jl +++ b/test/distributions/tensor_dirichlet_test.jl @@ -128,8 +128,8 @@ end for len in 3:5 α = rand(len, len, len) .+ 1 - @test_broken let d = TensorDirichlet(α) - ef = test_exponentialfamily_interface(d; test_basic_functions = true, option_assume_no_allocations = false) + let d = TensorDirichlet(α) + ef = test_exponentialfamily_interface(d; option_assume_no_allocations = false) η1 = getnaturalparameters(ef) for x in [rand(1.0:2.0, len, len) for _ in 1:3] x = x ./ sum(x)