Skip to content

Commit 75d2300

Browse files
Add AsyncioDispatcher to none value IOC
This shouldn't change anything, it just brings it more in line with every other test I've written. One less difference to investigate.
1 parent 8e64a7b commit 75d2300

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,6 @@ cov.xml
6565
# so editable installs work. Related:
6666
# https://github.com/mdavidsaver/setuptools_dso/issues/11
6767
/epicscorelibs
68+
69+
# VSCode
70+
/.vscode/*.log

tests/test_record_values.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -764,8 +764,9 @@ def none_value_test_func(self, record_func, queue):
764764

765765
record = record_func("SOME-NAME", **kwarg)
766766

767+
dispatcher = asyncio_dispatcher.AsyncioDispatcher()
767768
builder.LoadDatabase()
768-
softioc.iocInit()
769+
softioc.iocInit(dispatcher)
769770

770771
print("CHILD: Soft IOC started, about to .set(None)")
771772

0 commit comments

Comments
 (0)