Commit 39070f65 authored by Jaroslava Fiedlerova's avatar Jaroslava Fiedlerova

Minor fix in Iperf_analyzeV3TCPJson()

parent 9acf60a3
......@@ -108,8 +108,8 @@ def Iperf_analyzeV3TCPJson(filename, iperf_tcp_rate_target):
if (int(receiver_bitrate) < int(iperf_tcp_rate_target)):
rcv_msg += f" (too low! < {iperf_tcp_rate_target} Mbps)"
success = False
else:
rcv_msg += f" (target : {iperf_tcp_rate_target} Mbps)"
else:
rcv_msg += f" (target : {iperf_tcp_rate_target} Mbps)"
return(success, f'{snd_msg}\n{rcv_msg}')
except KeyError as e:
e_msg = results.get('error', f'error report not found in {filename}')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment