From f7c2db22b19c20ad19b10eff2fe4325bb3f015fb Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Thu, 20 Aug 2015 15:43:36 -0700 Subject: [PATCH] Increase sample size for Pareto fit_mle test --- test/fit.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fit.jl b/test/fit.jl index 0cebac9bf..752bde310 100644 --- a/test/fit.jl +++ b/test/fit.jl @@ -320,7 +320,7 @@ d = fit(Laplace, rand(Laplace(5.0, 3.0), N)) # Pareto -x = rand(Pareto(3., 7.), n0) +x = rand(Pareto(3., 7.), N) d = fit(Pareto, x) @test isa(d, Pareto)