Commit 478f67e4 authored by hardy's avatar hardy

fix type conversion for comparison operation

parent 984338e9
...@@ -2097,9 +2097,9 @@ class OaiCiTest(): ...@@ -2097,9 +2097,9 @@ class OaiCiTest():
else: else:
bit_too_low_msg='' bit_too_low_msg=''
lock.acquire() lock.acquire()
if (br_loss < self.iperf_bitrate_threshold) or (float(pl) > float(self.iperf_packetloss_threshold)): if (float(br_loss) < float(self.iperf_bitrate_threshold)) or (float(pl) > float(self.iperf_packetloss_threshold)):
statusQueue.put(1) statusQueue.put(1)
elif (br_loss < self.iperf_bitrate_threshold) and (float(pl) > float(self.iperf_packetloss_threshold)): elif (float(br_loss) < float(self.iperf_bitrate_threshold)) and (float(pl) > float(self.iperf_packetloss_threshold)):
statusQueue.put(-1) statusQueue.put(-1)
else: else:
statusQueue.put(0) statusQueue.put(0)
......
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