From 0b88183d41efb745b196e3ebb64d247e8fcc535b Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 15 Aug 2026 21:04:17 +0000 Subject: [PATCH] Restore the blank-line separator lost when two PRs merged PRs #285 and #286 both appended a new test section to the end of tests/test_process_backend.py. Each was correctly formatted on its own branch, but the textual merge joined the last function of one directly to the section comment of the other with a single blank line between them, which black wants to be two. Neither PR's CI could have caught this: the defect exists only in the merge result, not in either branch. It surfaced immediately once the lint gate from #290 landed on main, which is the gate doing its job on its first run. Formatting only; no behavior change. Suite: 533 passed, 11 skipped. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_012ebvMQ3vLxdK3joymz6Feg --- tests/test_process_backend.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_process_backend.py b/tests/test_process_backend.py index 4dbb57f..2999796 100644 --- a/tests/test_process_backend.py +++ b/tests/test_process_backend.py @@ -277,6 +277,8 @@ def test_supported_quotas_are_not_refused(): open_files_max=64, ) as sb: assert sb.backend == "process" + + # -- guest environment scrubbing ------------------------------------------