Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Remove obsolete step store from git attribution tests (#34795)
Update the git attribution test helper to construct
`WorldStateContributionInput` without the removed `step_store` field.

GitOrigin-RevId: 396b5508f05798f0b43d93f7d02838acdbf97c9b
  • Loading branch information
mandal-OAI authored and copyberry committed Jul 22, 2026
commit 2c49493b5b6bfcd3efbd83ae6031492296908c63
2 changes: 0 additions & 2 deletions codex-rs/ext/git-attribution/src/git_attribution_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ async fn contribute(
) -> WorldStateSectionContribution {
let session_store = ExtensionData::new("session");
let turn_store = ExtensionData::new("turn");
let step_store = ExtensionData::new("step");
registry.context_contributors()[0]
.contribute_world_state(WorldStateContributionInput {
thread_id: ThreadId::new(),
Expand All @@ -49,7 +48,6 @@ async fn contribute(
session_store: &session_store,
thread_store,
turn_store: &turn_store,
step_store: &step_store,
})
.await
.remove(0)
Expand Down
Loading