We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3ff982 commit eb5a7b3Copy full SHA for eb5a7b3
tests/test_record_values.py
@@ -591,16 +591,8 @@ def test_value_post_init_set(self):
591
"""Test that records provide the expected values on get calls when using
592
.set() before IOC initialisation and caget after initialisation"""
593
594
- # Various conditions mean we cannot use the entire list of cases
595
- filtered_list = []
596
- for item in record_values_list:
597
- # .set() on In records doesn't update correctly.
598
- # pythonSoftIOC issue #67
599
- if item[1] not in in_records:
600
- filtered_list.append(item)
601
-
602
run_test_function(
603
- filtered_list, SetValueEnum.SET_BEFORE_INIT, GetValueEnum.CAGET
+ record_values_list, SetValueEnum.SET_BEFORE_INIT, GetValueEnum.CAGET
604
)
605
606
@requires_cothread
0 commit comments