From 6f595d7034ca39089cde3b4210a84c6cb22148ce Mon Sep 17 00:00:00 2001 From: smathis Date: Tue, 22 Jul 2025 13:52:25 +0200 Subject: [PATCH] Missed some import path names --- tests/sinqMotor/limits.py | 2 +- tests/sinqMotor/turboPmac/rot1/test_common.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/sinqMotor/limits.py b/tests/sinqMotor/limits.py index fd28202..621ac5a 100644 --- a/tests/sinqMotor/limits.py +++ b/tests/sinqMotor/limits.py @@ -3,7 +3,7 @@ import time def reread_limits_from_hw(motor): """ - sinqAxis motors usually read their limits from the hardware at each poll, + sinqMotor drivers usually read their limits from the hardware at each poll, hence any values manually written to DHLM or DLLM should be overwritten after the next poll at latest """ diff --git a/tests/sinqMotor/turboPmac/rot1/test_common.py b/tests/sinqMotor/turboPmac/rot1/test_common.py index 11829fa..e9722b2 100644 --- a/tests/sinqMotor/turboPmac/rot1/test_common.py +++ b/tests/sinqMotor/turboPmac/rot1/test_common.py @@ -1,8 +1,8 @@ # Run a selection of common tests from tests.move import * -from tests.sinqAxis.limits import * -from tests.sinqAxis.turboPmac.rot1.conftest import reset +from tests.sinqMotor.limits import * +from tests.sinqMotor.turboPmac.rot1.conftest import reset # def test_move_to_low_limit_switch(motor):