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