Increasing default timeout for live view tests from 20 sec to 120 sec

to account for slowdowns.
This commit is contained in:
Vitaliy Zakaznikov 2020-07-11 04:30:53 +02:00
parent 7c2bd32c9c
commit 1ed7d176fc

View File

@ -19,7 +19,7 @@ class client(object):
self.client.command = command
self.client.eol('\r')
self.client.logger(log, prefix=name)
self.client.timeout(20)
self.client.timeout(120)
self.client.expect('[#\$] ', timeout=60)
self.client.send(command)