Update tests/test_utils_hastepics.py
Run CI Tests / test (push) Successful in 1m40s

This commit is contained in:
2025-08-11 11:50:25 +02:00
parent 4c79d82b09
commit ce28da4a39
+2 -2
View File
@@ -150,11 +150,11 @@ def test_speedup_get_pv():
def test_speedup_motor_instantiation():
"""On exige juste pas de grosse régression vs EPICS."""
t0 = time.perf_counter()
Motor("TEST:SIM:M6")
Motor("TEST:SIM:M6")
t1 = time.perf_counter()
t2 = time.perf_counter()
epics.Motor("TEST:SIM:M8")
epics.Motor("TEST:SIM:M8")
t3 = time.perf_counter()
fast_time = t1 - t0