Skip to content

Commit c29e42d

Browse files
committed
Merge branch 'topic/py-driver-fix' into 'master'
Fix bug in Python LSP test infra See merge request eng/ide/ada_language_server!1778
2 parents 57a5f9e + f500d06 commit c29e42d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testsuite/drivers/lsp_python_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def __init__(
120120

121121
# Kill the server when we reach this time
122122
self.kill_me_at = time.time() + int(
123-
RLIMIT_SECONDS * os.environ.get("ALS_WAIT_FACTOR", 1.0)
123+
RLIMIT_SECONDS * float(os.environ.get("ALS_WAIT_FACTOR", "1.0"))
124124
)
125125

126126
# This contains either None or a timestamp. If a timestamp,

0 commit comments

Comments
 (0)