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

Skip to content
Prev Previous commit
Next Next commit
fixup! gen
  • Loading branch information
deansheather committed May 27, 2022
commit 2fee23a4ed8b9cd9db9059b8b4446b2831418a4c
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
DELETE FROM
provisioner_jobs
WHERE
provisioner_job_type = 'template_version_plan'
type = 'template_version_plan'
;
2 changes: 1 addition & 1 deletion coderd/templateversions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ func TestTemplateVersionPlan(t *testing.T) {
// Fetch template version plan
newJob, err := client.TemplateVersionPlan(ctx, version.ID, job.ID)
require.NoError(t, err)
require.Equal(t, job, newJob)
require.Equal(t, job.ID, newJob.ID)

// Stream logs
logs, err := client.TemplateVersionPlanLogsAfter(ctx, version.ID, job.ID, after)
Expand Down