From 77abee6c5a4c9a232c05410e3f111c08792fc56c Mon Sep 17 00:00:00 2001 From: Aleksej Date: Mon, 13 Jun 2022 23:36:08 +0200 Subject: [PATCH] fix testbot typos --- test/testbot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/testbot b/test/testbot index ed11a21..1254b22 100755 --- a/test/testbot +++ b/test/testbot @@ -39,12 +39,12 @@ def printandexit(): print("Results of test:") for i in results1: if i[2] == 0: - print(i[0] + " : Not recieved) + print(i[0] + " : Not recieved") else: print(i[0].rstrip() + " : " + str(round(i[2]-i[1],2)) + " secounds") for i in results2: if i[2] == 0: - print(i[0] + " : Not recieved) + print(i[0] + " : Not recieved") else: print(i[0].rstrip() + " : " + str(round(i[2]-i[1],2)) + " secounds") exit()