From e01fdccab92319a0aa2abde5ee0aafba512c578d Mon Sep 17 00:00:00 2001 From: Marcus Date: Tue, 5 Dec 2023 10:47:05 -0800 Subject: [PATCH] bug fix in tests --- tests/test_gpCAM.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_gpCAM.py b/tests/test_gpCAM.py index c2a2f18..82bd773 100755 --- a/tests/test_gpCAM.py +++ b/tests/test_gpCAM.py @@ -28,7 +28,7 @@ def instrument2(data, instrument_dict=None): return data def mt_kernel(x1,x2,hps,obj): - d = obj._get_distance_matrix(x1,x2) + d = obj.get_distance_matrix(x1,x2) return np.exp(-d)