From e03d13211c6e785b676d4099a31dc2646026ee07 Mon Sep 17 00:00:00 2001 From: Mathias Fredriksson Date: Thu, 26 Jun 2025 20:50:53 +0300 Subject: [PATCH] test(agent): fix TestAgent_DevcontainerRecreate (#18618) --- agent/agent_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/agent_test.go b/agent/agent_test.go index 364ccb0e1a..4a9141bd37 100644 --- a/agent/agent_test.go +++ b/agent/agent_test.go @@ -2372,7 +2372,7 @@ func TestAgent_DevcontainerRecreate(t *testing.T) { // devcontainer, we do it in a goroutine so we can process logs // concurrently. go func(container codersdk.WorkspaceAgentContainer) { - _, err := conn.RecreateDevcontainer(ctx, container.ID) + _, err := conn.RecreateDevcontainer(ctx, devcontainerID.String()) assert.NoError(t, err, "recreate devcontainer should succeed") }(container)