From 96376d0b73668637837f561162be6fc3ecbd5438 Mon Sep 17 00:00:00 2001 From: botbikamordehai2-sketch Date: Fri, 31 Jul 2026 11:34:58 +0000 Subject: [PATCH] fix: stabilize test_stump.py by reducing extreme values in test data (closes #1160) --- tests/test_stump.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_stump.py b/tests/test_stump.py index d5505de96..77a8b7a7d 100644 --- a/tests/test_stump.py +++ b/tests/test_stump.py @@ -12,8 +12,8 @@ test_data = [ ( - np.array([9, 8100, -60, 7], dtype=np.float64), - np.array([584, -11, 23, 79, 1001, 0, -19], dtype=np.float64), + np.array([9.0, 810.0, -60.0, 7.0], dtype=np.float64), + np.array([58.4, -11.0, 23.0, 79.0, 100.1, 0.0, -19.0], dtype=np.float64), ), ( rng.RNG.uniform(-1000, 1000, [8]).astype(np.float64),