From f3afa1132d81354ce22084e9cedf6886924bbc13 Mon Sep 17 00:00:00 2001 From: starr-openai Date: Wed, 6 May 2026 23:23:30 -0700 Subject: [PATCH] Fix rollout cwd fixture import Import the Windows-aware test_path_buf helper from core_test_support where it is defined. Co-authored-by: Codex --- codex-rs/app-server/tests/suite/conversation_summary.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/app-server/tests/suite/conversation_summary.rs b/codex-rs/app-server/tests/suite/conversation_summary.rs index f8acc46bc5..91e774d00c 100644 --- a/codex-rs/app-server/tests/suite/conversation_summary.rs +++ b/codex-rs/app-server/tests/suite/conversation_summary.rs @@ -2,7 +2,6 @@ use anyhow::Result; use app_test_support::McpProcess; use app_test_support::create_fake_rollout; use app_test_support::rollout_path; -use app_test_support::test_path_buf; use app_test_support::to_response; use codex_app_server::in_process; use codex_app_server::in_process::InProcessStartArgs; @@ -32,6 +31,7 @@ use codex_thread_store::ThreadEventPersistenceMode; use codex_thread_store::ThreadPersistenceMetadata; use codex_thread_store::ThreadStore; use codex_utils_absolute_path::AbsolutePathBuf; +use core_test_support::test_path_buf; use pretty_assertions::assert_eq; use std::path::Path; use std::path::PathBuf;