Skip to content

Commit

Permalink
improve test for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-eq committed Nov 20, 2024
1 parent 8e7b89a commit b953a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ert/ui_tests/cli/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ async def _find_storage_process_pid() -> int:
while True:
for ert_child_process in ert_process.children():
try:
if "_storage_main" in ert_child_process.cmdline()[1]:
if "storage_main" in "".join(ert_child_process.cmdline()):
return ert_child_process.pid
except (ZombieProcess, NoSuchProcess, IndexError):
pass
Expand Down

0 comments on commit b953a27

Please sign in to comment.