Skip to content

Commit eb5a7b3

Browse files
Re-enable tests that were blocked on issue#67
Previously all "in" records were filtered out of this test
1 parent c3ff982 commit eb5a7b3

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

tests/test_record_values.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -591,16 +591,8 @@ def test_value_post_init_set(self):
591591
"""Test that records provide the expected values on get calls when using
592592
.set() before IOC initialisation and caget after initialisation"""
593593

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-
602594
run_test_function(
603-
filtered_list, SetValueEnum.SET_BEFORE_INIT, GetValueEnum.CAGET
595+
record_values_list, SetValueEnum.SET_BEFORE_INIT, GetValueEnum.CAGET
604596
)
605597

606598
@requires_cothread

0 commit comments

Comments
 (0)