Skip to content
Merged
Prev Previous commit
Fix ws unique name
  • Loading branch information
BrunoQuaresma committed Sep 16, 2024
commit 9fd7fbeaa6d145cedb5d24095619d6d3346e89b0
3 changes: 2 additions & 1 deletion coderd/workspaces_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3601,7 +3601,8 @@ func TestWorkspaceTimings(t *testing.T) {
OwnerID: owner.UserID,
OrganizationID: owner.OrganizationID,
TemplateID: template.ID,
Name: "test-workspace",
// Generate unique name for the workspace
Name: "test-workspace-" + uuid.New().String(),
})
jobID := uuid.New()
job := dbgen.ProvisionerJob(t, db, pubsub, database.ProvisionerJob{
Expand Down
Loading