Update tests/test_utils_pyepics.py
Run CI Tests / test (push) Successful in 1m3s

This commit is contained in:
2025-08-11 00:52:32 +02:00
parent 7f84f1b8a6
commit f6ed44df0c
+4 -2
View File
@@ -4,7 +4,7 @@ import threading
from morbidissimo import MorIOC
from slic.utils.hastyepics import get_pv as PV
from slic.utils.pyepics import *
'''
# ------------------------------------------------------------------------------
# Fixture IOC
# ------------------------------------------------------------------------------
@@ -153,4 +153,6 @@ def test_epics_string_special_chars():
estr = EpicsString("TEST_SPECIAL")
assert estr._pv.wait_for_connection(timeout=2.0), "PV non connecté"
estr.set("test@value")
assert estr.get() == "test@value"
assert estr.get() == "test@value"
'''