From db9342cb83c7c501edfe943099fcd5df193ef542 Mon Sep 17 00:00:00 2001 From: Sathvik Bhagavan Date: Tue, 12 Dec 2023 09:07:43 +0000 Subject: [PATCH] test: increase one extra point in GEKPLS test 11 --- test/GEKPLS.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/GEKPLS.jl b/test/GEKPLS.jl index 7b93292f..7d9a3a8b 100644 --- a/test/GEKPLS.jl +++ b/test/GEKPLS.jl @@ -214,12 +214,12 @@ end @test isapprox(minima, 0.0, atol = 0.0001) end -@testset "Test 11: Check gradient (dimensions = 3; n_comp = 2; extra_points = 2)" begin +@testset "Test 11: Check gradient (dimensions = 3; n_comp = 2; extra_points = 3)" begin lb = [-5.0, -5.0, -5.0] ub = [10.0, 10.0, 10.0] n_comp = 2 delta_x = 0.0001 - extra_points = 2 + extra_points = 3 initial_theta = [0.01 for i in 1:n_comp] n = 100 x = sample(n, lb, ub, SobolSample())