fix testbot typos

This commit is contained in:
Aleksej 2022-06-13 23:36:08 +02:00
parent 9aa08adef8
commit 77abee6c5a
No known key found for this signature in database
GPG Key ID: 4DB9C85100A6D17F

View File

@ -39,12 +39,12 @@ def printandexit():
print("Results of test:") print("Results of test:")
for i in results1: for i in results1:
if i[2] == 0: if i[2] == 0:
print(i[0] + " : Not recieved) print(i[0] + " : Not recieved")
else: else:
print(i[0].rstrip() + " : " + str(round(i[2]-i[1],2)) + " secounds") print(i[0].rstrip() + " : " + str(round(i[2]-i[1],2)) + " secounds")
for i in results2: for i in results2:
if i[2] == 0: if i[2] == 0:
print(i[0] + " : Not recieved) print(i[0] + " : Not recieved")
else: else:
print(i[0].rstrip() + " : " + str(round(i[2]-i[1],2)) + " secounds") print(i[0].rstrip() + " : " + str(round(i[2]-i[1],2)) + " secounds")
exit() exit()