From dc97007878e44796d2feb7b0d454581ccd8f8e6c Mon Sep 17 00:00:00 2001 From: caglorithm Date: Fri, 13 Mar 2020 04:15:03 +0100 Subject: [PATCH] update test --- tests/test_exploration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_exploration.py b/tests/test_exploration.py index 6122043..5995b12 100644 --- a/tests/test_exploration.py +++ b/tests/test_exploration.py @@ -21,7 +21,7 @@ def evalFunction(params): params = {"x": 1.3, "y": 2.7, "z": 0.0} explore_params = {"x": np.linspace(-2, 2, 2), "y": np.linspace(-2, 2, 2)} - ex = mopet.Exploration(evalFunction, params, explore_params) + ex = mopet.Exploration(evalFunction, explore_params, params) ex.run() ex.load_results()