Merge "Fix warnings in all snaps-related modules"
[functest.git] / functest / ci / check_deployment.py
index 81607df..8d19d85 100644 (file)
@@ -44,7 +44,7 @@ def verify_connectivity(endpoint):
         port = url.port
         if not port:
             port = 443 if url.scheme == "https" else 80
-        connection.connect(url.hostname, port)
+        connection.connect((url.hostname, port))
         LOGGER.debug('%s:%s is reachable!', url.hostname, port)
         return True
     except socket.error: