From 11aedc5268bb7dca618154606a5e7718b60525ca Mon Sep 17 00:00:00 2001 From: Thomas Juerges <4-jurges@users.noreply.git.astron.nl> Date: Tue, 20 Oct 2020 18:02:38 +0200 Subject: [PATCH] Thijs changed the MP/CP names to what we discussed The names are now MP_NAME_R CP_NAME_RW This makes it clear what an MP and what a CP is. --- RCUSCC-DS/test/test-RCUSCC.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RCUSCC-DS/test/test-RCUSCC.py b/RCUSCC-DS/test/test-RCUSCC.py index 5c1b6a9fd..d151a5d31 100755 --- a/RCUSCC-DS/test/test-RCUSCC.py +++ b/RCUSCC-DS/test/test-RCUSCC.py @@ -11,8 +11,8 @@ client.connect() obj = client.get_objects_node() name_space_index = 2 time_offset = obj.get_child("{}:time_offset".format(name_space_index)) -time_offset_R = time_offset.get_child("{}:monitor_point".format(name_space_index)) -time_offset_RW = time_offset.get_child("{}:control_point".format(name_space_index)) +time_offset_R = time_offset.get_child("{}:time_offset_R".format(name_space_index)) +time_offset_RW = time_offset.get_child("{}:time_offset_RW".format(name_space_index)) old_time_offset = time_offset_R.get_value() target_time_offset = 1 new_time_offset = old_time_offset + target_time_offset -- GitLab