From 0ca82cc4280da2cfed7797c1bf8fb104884ed6b3 Mon Sep 17 00:00:00 2001 From: kohlhaasrebecca <rebecca.kohlhaas@outlook.com> Date: Fri, 13 Dec 2024 11:39:40 +0100 Subject: [PATCH] Fix test --- tests/test_PostProcessing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_PostProcessing.py b/tests/test_PostProcessing.py index 5c79a9009..6beeb2cec 100644 --- a/tests/test_PostProcessing.py +++ b/tests/test_PostProcessing.py @@ -108,7 +108,7 @@ def basic_engine_sequential(): expdes = ExpDesigns(inp) expdes.n_init_samples = 4 expdes.n_max_samples = 4 - expdes.X = np.array([[0, 0], [1, 1], [0.5, 0.5], [0.1, 0.5]]) # Two input dimensions + expdes.X = np.array([[0], [1], [0.5], [0.1]]) expdes.Y = {'Z': [[0.4], [0.5], [0.3], [0.4]]} # Output values expdes.x_values = np.array([0]) -- GitLab