Increase smoke tests time-out

This commit is contained in:
nsubiron 2019-03-29 21:23:53 +01:00
parent 514cfacaa6
commit f22df6d4a5
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ TESTING_ADDRESS = ('localhost', 3654)
class SmokeTest(unittest.TestCase):
def setUp(self):
self.client = carla.Client(*TESTING_ADDRESS)
self.client.set_timeout(2.0)
self.client.set_timeout(10.0)
def tearDown(self):
self.client = None