From 9617e515784c357905fc7ac3dd5409a210daa7fc Mon Sep 17 00:00:00 2001 From: Johan Larsson Date: Wed, 7 Feb 2024 10:41:27 +0100 Subject: [PATCH] chore: remove unused test --- tests/test_basic.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/tests/test_basic.py b/tests/test_basic.py index b2d1caa..8833e4a 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -58,19 +58,3 @@ def test_sparse_dense_standardized(): np.testing.assert_array_almost_equal(coef_sparse, coef_dense) np.testing.assert_array_almost_equal(coef_dense, coef_true) - - -def test_failing_problem(): - """Test care for problem that failed at some point.""" - n = 100 - p = 3 - - seed = 31 - rng = default_rng(seed) - - x = rng.standard_normal((n, p)) - beta = rng.standard_normal(p) - y = x @ beta + rng.standard_normal(n) - - model = Slope(alpha=1.0) - model.fit(x, y)