From 3f9763ac89108480da9f27180d2116e36970c4e3 Mon Sep 17 00:00:00 2001 From: "Benjamin T. Vincent" Date: Fri, 9 Aug 2024 16:02:14 +0100 Subject: [PATCH] fix import in one of the tests --- causalpy/tests/test_integration_skl_examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/causalpy/tests/test_integration_skl_examples.py b/causalpy/tests/test_integration_skl_examples.py index 1a96d388..a35d4983 100644 --- a/causalpy/tests/test_integration_skl_examples.py +++ b/causalpy/tests/test_integration_skl_examples.py @@ -185,7 +185,7 @@ def test_rd_linear_main_effects_bandwidth(): 2. skl_experiements.RegressionDiscontinuity returns correct type """ data = cp.load_data("rd") - result = cp.skl_experiments.RegressionDiscontinuity( + result = cp.RegressionDiscontinuity( data, formula="y ~ 1 + x + treated", model=LinearRegression(),