From 46dcc50e38d9d0f0dabfeed8cdce6dbb842ae751 Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Fri, 24 Oct 2025 15:53:09 +0200 Subject: [PATCH] fix(test): try to have the correct dir for windows --- internal/agent/common_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/agent/common_test.go b/internal/agent/common_test.go index b266be20852af5bc0eacb336f29fd59943df7439..9944fb50de4f4b978f4a9e3182e65eb36831fd49 100644 --- a/internal/agent/common_test.go +++ b/internal/agent/common_test.go @@ -157,7 +157,7 @@ func coderAgent(r *recorder.Recorder, env env, large, small fantasy.LanguageMode prompt, err := coderPrompt( prompt.WithTimeFunc(fixedTime), prompt.WithPlatform("linux"), - prompt.WithWorkingDir(env.workingDir), + prompt.WithWorkingDir(filepath.ToSlash(env.workingDir)), ) if err != nil { return nil, err