From adbd7dcd28715f9c7b1030c204018b1a398334df Mon Sep 17 00:00:00 2001 From: tligui_y Date: Mon, 4 Aug 2025 02:09:00 +0200 Subject: [PATCH] Update tests/test_utils_ipy.py --- tests/test_utils_ipy.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_utils_ipy.py b/tests/test_utils_ipy.py index 8cff35195..4403c70ba 100644 --- a/tests/test_utils_ipy.py +++ b/tests/test_utils_ipy.py @@ -7,7 +7,6 @@ import types @pytest.fixture(scope="module") def fake_ipython(): - """Fixture module-scoped pour simuler IPython""" class FakeIPython: def __init__(self): self.user_ns = {} @@ -15,7 +14,6 @@ def fake_ipython(): @pytest.fixture(autouse=True) def simulate_ipython(fake_ipython, monkeypatch): - """Configure le mock IPython avant chaque test""" monkeypatch.setattr("slic.utils.ipy.get_ipython", lambda: fake_ipython) return fake_ipython