allow client test more time to execute

This commit is contained in:
Kevin Froman 2020-04-24 18:54:12 -05:00
parent 3e241dcb72
commit ac57c6d890
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class TestClient(unittest.TestCase):
if chr(recv_data.pop(0)) in "t"*100:
break
except IndexError:
self.assertLess((time.time() - start), 20)
self.assertLess((time.time() - start), 60)
time.sleep(0.01)
except KeyboardInterrupt:
raise