style(cli): reformat the autoroute process tests with ruff 0.15.3

This commit is contained in:
yoggydev 2026-08-24 06:45:03 +09:00
parent 6c584de435
commit 05f96d6f01

View file

@ -171,8 +171,7 @@ class TestIsRunningDoesNotSignal:
assert is_running(child.pid) is True
time.sleep(1.0)
assert child.poll() is None, (
f"the liveness probe terminated the process it was asked about "
f"(exit code {child.returncode})"
f"the liveness probe terminated the process it was asked about (exit code {child.returncode})"
)
assert is_running(child.pid) is True
finally: