Use remote primary env in routing tests

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
starr-openai
2026-05-08 18:52:04 -07:00
parent 807db7643e
commit 9c2c8d90d5
2 changed files with 2 additions and 2 deletions

View File

@@ -253,7 +253,7 @@ async fn exec_command_routes_to_selected_remote_environment() -> Result<()> {
"yield_time_ms": 1_000,
"environment_id": REMOTE_ENVIRONMENT_ID,
}),
Some(vec![local_selection, remote_selection]),
Some(vec![remote_selection, local_selection]),
)
.await?;
assert!(

View File

@@ -561,7 +561,7 @@ async fn view_image_routes_to_selected_remote_environment() -> anyhow::Result<()
test.submit_turn_with_environments_no_wait(
"route view image",
Some(vec![local_selection, remote_selection]),
Some(vec![remote_selection, local_selection]),
)
.await?;