Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test_genie_python_using_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def test_GIVE_config_with_bi_pv_WHEN_set_pv_value_with_None_THEN_value_is_not_se
bi_pv_name = "SIMPLE:BI"
value_at_start = g.get_pv(bi_pv_name, is_local=True)
g.set_pv(bi_pv_name, None, is_local=True, wait=True)
assert_that(g.get_pv(bi_pv_name), is_(value_at_start))
assert_that(g.get_pv(bi_pv_name, is_local=True), is_(value_at_start))


class TestWaitforPV(unittest.TestCase):
Expand Down