From 025c8a8a1825a97f60f0abb1fa145bf234c8fd2e Mon Sep 17 00:00:00 2001 From: Jack Li Date: Wed, 18 Oct 2023 21:16:11 -0700 Subject: [PATCH] remove tests with a single argument --- test/univariate/continuous/loglogistic.jl | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/univariate/continuous/loglogistic.jl b/test/univariate/continuous/loglogistic.jl index 1aa89efbb..962b0e830 100644 --- a/test/univariate/continuous/loglogistic.jl +++ b/test/univariate/continuous/loglogistic.jl @@ -5,15 +5,12 @@ using Test @test round(pdf(LogLogistic(), -1), digits=6) == 0.0 @test round(pdf(LogLogistic(), 1), digits=6) == 0.25 - @test round(pdf(LogLogistic(2), 2), digits=6) == 0.125 @test round(pdf(LogLogistic(2,2), 1), digits=6) == 0.32 @test round(cdf(LogLogistic(), -1), digits=6) == 0.0 @test round(cdf(LogLogistic(), 1), digits=6) == 0.5 - @test round(cdf(LogLogistic(2), 3), digits=6) == 0.6 @test round(cdf(LogLogistic(2,2), 4), digits=6) == 0.8 - @test round(ccdf(LogLogistic(2), 3), digits=6) == 0.4 @test round(ccdf(LogLogistic(2,2), 4), digits=6) == 0.2 @test round(logpdf(LogLogistic(), -1), digits=6) == -Inf