[codex] Fix Guardian argument comment lint (#24902)

## Summary
- Add the required `/*parent_thread_id*/` argument comment at the
Guardian review session test callsite flagged by CI.

## Validation
- `just fmt`
- Not run: clippy/tests, per request; CI will cover them.
This commit is contained in:
jif-oai
2026-05-28 13:38:48 +02:00
committed by GitHub
parent 3307240195
commit 120edad8ed

View File

@@ -1209,7 +1209,10 @@ mod tests {
);
assert_eq!(
None,
prompt_cache_key_override_for_review_session(&session_source, None)
prompt_cache_key_override_for_review_session(
&session_source,
/*parent_thread_id*/ None
)
);
}