aboutsummaryrefslogtreecommitdiffstats
path: root/robot/resources/test_templates/closedloop_test_template.robot
diff options
context:
space:
mode:
authorDR695H <dr695h@att.com>2019-07-10 10:13:58 -0400
committerDR695H <dr695h@att.com>2019-07-10 10:13:58 -0400
commit8e7028b3ee4d18ec1916f9a68dd8587377452376 (patch)
treedf508dada6bd9a2ade634aadfdb16c0cd250a2a5 /robot/resources/test_templates/closedloop_test_template.robot
parent8ade70bdca03a5c5e3f46df70f75549de4d7b9d8 (diff)
remove log to console
log to console doesnt show things in the log files and so isnt viewable in jenkins. If console is really needed, add console=True to Log keyword Issue-ID: TEST-173 Change-Id: I9f736eab99120c4b7c32b55fd6c5e0f823e7b734 Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robot/resources/test_templates/closedloop_test_template.robot')
-rw-r--r--robot/resources/test_templates/closedloop_test_template.robot8
1 files changed, 4 insertions, 4 deletions
diff --git a/robot/resources/test_templates/closedloop_test_template.robot b/robot/resources/test_templates/closedloop_test_template.robot
index 7354dc1a..4547b92a 100644
--- a/robot/resources/test_templates/closedloop_test_template.robot
+++ b/robot/resources/test_templates/closedloop_test_template.robot
@@ -205,12 +205,12 @@ VFWCL High Test
[Documentation] Test Control Loop for High Traffic
[Arguments] ${pkg_host}
Enable Streams V2 ${pkg_host} 10
- Log To Console Set number of streams to 10
+ Log Set number of streams to 10
:FOR ${i} IN RANGE 12
\ Sleep 15s
\ ${resp}= Get List Of Enabled Streams V2 ${pkg_host}
\ ${stream_count}= Set Variable ${resp['stream-count']['streams']['active-streams']}
- \ Log To Console Number of streams: ${stream_count}
+ \ Log Number of streams: ${stream_count}
\ Exit For Loop If '${stream_count}'=='5'
Should Be Equal As Integers ${stream_count} 5
@@ -218,12 +218,12 @@ VFWCL Low Test
[Documentation] Test Control Loop for Low Traffic
[Arguments] ${pkg_host}
Enable Streams V2 ${pkg_host} 1
- Log To Console Set number of streams to 1
+ Log Set number of streams to 1
:FOR ${i} IN RANGE 12
\ Sleep 15s
\ ${resp}= Get List Of Enabled Streams V2 ${pkg_host}
\ ${stream_count}= Set Variable ${resp['stream-count']['streams']['active-streams']}
- \ Log To Console Number of streams: ${stream_count}
+ \ Log Number of streams: ${stream_count}
\ Exit For Loop If '${stream_count}'=='5'
Should Be Equal As Integers ${stream_count} 5