From 9b2f6c3149e09b657c543d8de8fd54c73e875ff8 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Sun, 3 Aug 2025 22:06:28 +0200 Subject: [PATCH] Update tests/test_utils_ipy.py --- tests/test_utils_ipy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils_ipy.py b/tests/test_utils_ipy.py index 149219182..60a7f923a 100644 --- a/tests/test_utils_ipy.py +++ b/tests/test_utils_ipy.py @@ -14,7 +14,7 @@ def fake_ipython(): @pytest.fixture(autouse=True) def simulate_ipython(fake_ipython, monkeypatch): - monkeypatch.setattr("slic.core.device.device.get_ipython", lambda: fake_ipython) + monkeypatch.setattr("slic.utils.ipy.get_ipython", lambda: fake_ipython) return fake_ipython def test_devices_repr_fallback_and_ignore(simulate_ipython):