Remove use of deprecated terse() on print_var
terse is now the default.
Change-Id: If25901eea7fdfa502b012cb995242790e7f6176d
Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>
diff --git a/redfish/managers/test_bmc_network_conf.robot b/redfish/managers/test_bmc_network_conf.robot
index ffb3d16..826c3a2 100644
--- a/redfish/managers/test_bmc_network_conf.robot
+++ b/redfish/managers/test_bmc_network_conf.robot
@@ -630,7 +630,7 @@
${redfish_nameservers}= Redfish.Get Attribute ${REDFISH_NW_ETH0_URI} StaticNameServers
${resolve_conf_nameservers}= CLI Get Nameservers
- Rqprint Vars redfish_nameservers resolve_conf_nameservers fmt=terse
+ Rqprint Vars redfish_nameservers resolve_conf_nameservers
# Check that the 2 lists are equivalent.
${match}= Evaluate set($redfish_nameservers) == set($resolve_conf_nameservers)
diff --git a/redfish/managers/test_managers_bmc_time.robot b/redfish/managers/test_managers_bmc_time.robot
index bab3ec3..5515473 100644
--- a/redfish/managers/test_managers_bmc_time.robot
+++ b/redfish/managers/test_managers_bmc_time.robot
@@ -126,11 +126,11 @@
${original_ntp}= Redfish.Get Attribute ${REDFISH_NW_PROTOCOL_URI} NTP
Set Suite Variable ${original_ntp}
- Rprint Vars original_ntp fmt=terse
+ Rprint Vars original_ntp
# The following patch command should set the ["NTP"]["ProtocolEnabled"] property to "True".
Redfish.Patch ${REDFISH_NW_PROTOCOL_URI} body={u'NTPEnabled': ${True}}
${ntp}= Redfish.Get Attribute ${REDFISH_NW_PROTOCOL_URI} NTP
- Rprint Vars ntp fmt=terse
+ Rprint Vars ntp
Rvalid Value ntp["ProtocolEnabled"] valid_values=[True]