diff --git a/codex-rs/core/tests/suite/unified_exec.rs b/codex-rs/core/tests/suite/unified_exec.rs index 226c5c6af..a165db045 100644 --- a/codex-rs/core/tests/suite/unified_exec.rs +++ b/codex-rs/core/tests/suite/unified_exec.rs @@ -171,7 +171,7 @@ async fn create_workspace_directory( test: &TestCodex, rel_path: impl AsRef, ) -> Result { - let abs_path = test.config.cwd.join(rel_path.as_ref())?; + let abs_path = test.config.cwd.join(rel_path.as_ref()); test.fs() .create_directory(&abs_path, CreateDirectoryOptions { recursive: true }) .await?;