diff options
Diffstat (limited to 'scripts/automation/trex_control_plane/stl/trex_stl_lib')
-rw-r--r-- | scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py index e44fe801..487f3055 100644 --- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py +++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py @@ -903,7 +903,7 @@ class Port(object): # Grat ARP grat_arp = rx_info['grat_arp'] if grat_arp['is_active']: - info['grat_arp'] = grat_arp['interval_sec'] + info['grat_arp'] = "every {0} seconds".format(grat_arp['interval_sec']) else: info['grat_arp'] = "off" |