From 5aa940837fb6ebf5527ce575f09613961aff07d9 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Sun, 3 Aug 2025 22:04:07 +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 c86e9e5bd..149219182 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.devices.get_ipython", lambda: fake_ipython) + monkeypatch.setattr("slic.core.device.device.get_ipython", lambda: fake_ipython) return fake_ipython def test_devices_repr_fallback_and_ignore(simulate_ipython):