thread-store: fix response fixture compilation (#28642)

## Why

A `codex-thread-store` test fixture still constructs
`ResponseItem::FunctionCallOutput` without its required `metadata`
field, preventing the crate's test targets from compiling on `main`.

## What changed

- Set the fixture's response-item metadata to `None`.

## Testing

- `cargo check -p codex-thread-store --tests`
This commit is contained in:
pakrym-oai
2026-06-16 19:16:16 -07:00
committed by GitHub
Unverified
parent 3d02c443bc
commit 6f77491e95
+1
View File
@@ -512,6 +512,7 @@ mod tests {
RolloutItem::ResponseItem(ResponseItem::FunctionCallOutput {
call_id: "call-1".to_string(),
output: FunctionCallOutputPayload::from_text("tool output".to_string()),
metadata: None,
}),
RolloutItem::EventMsg(EventMsg::TokenCount(
codex_protocol::protocol::TokenCountEvent {