Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e03d132

Browse files
authored
test(agent): fix TestAgent_DevcontainerRecreate (#18618)
1 parent 1b1d091 commit e03d132

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

agent/agent_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2372,7 +2372,7 @@ func TestAgent_DevcontainerRecreate(t *testing.T) {
23722372
// devcontainer, we do it in a goroutine so we can process logs
23732373
// concurrently.
23742374
go func(container codersdk.WorkspaceAgentContainer) {
2375-
_, err := conn.RecreateDevcontainer(ctx, container.ID)
2375+
_, err := conn.RecreateDevcontainer(ctx, devcontainerID.String())
23762376
assert.NoError(t, err, "recreate devcontainer should succeed")
23772377
}(container)
23782378

0 commit comments

Comments
 (0)