From 3812a9b256766ff27218f61b41216acc0b2b941c Mon Sep 17 00:00:00 2001 From: Mykola Lukashchuk Date: Wed, 25 Sep 2024 14:15:14 +0200 Subject: [PATCH] test(fix): remove unneeded testset --- .../mv_normal_mean_scale_precision_tests.jl | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/test/distributions/normal_family/mv_normal_mean_scale_precision_tests.jl b/test/distributions/normal_family/mv_normal_mean_scale_precision_tests.jl index 8656672e..51cb3794 100644 --- a/test/distributions/normal_family/mv_normal_mean_scale_precision_tests.jl +++ b/test/distributions/normal_family/mv_normal_mean_scale_precision_tests.jl @@ -220,11 +220,9 @@ end # small time is supposed to be O(k) and full time is supposed to O(k^2) # the constant C is selected to account to fluctuations in test runs C = 0.9 - @testset "k = $k" - @test fi_mvsp_time < fi_full_time/(C*k) - @test fi_mvsp_alloc < fi_full_alloc/(C*k) - @test cholinv_time_small < cholinv_time_full/(C*k) - @test cholinv_alloc_small < cholinv_alloc_full/(C*k) - end + @test fi_mvsp_time < fi_full_time/(C*k) + @test fi_mvsp_alloc < fi_full_alloc/(C*k) + @test cholinv_time_small < cholinv_time_full/(C*k) + @test cholinv_alloc_small < cholinv_alloc_full/(C*k) end end \ No newline at end of file