Update tests/test_utils_pv.py
Run CI Tests / test (push) Successful in 1m39s

This commit is contained in:
2025-08-04 12:49:06 +02:00
parent 864c9a450e
commit 1731c7449c
+2 -1
View File
@@ -21,7 +21,8 @@ def fake_epics_pv(monkeypatch):
old = self._value
self._value = value
for cb in self._callbacks.values():
cb(value, old=old, **kwargs)
cb(value=value, old=old, **kwargs)
def add_callback(self, callback):
cb_id = len(self._callbacks) + 1