test: fix use of t.Logf where t.Log would suffice (#16328)

This commit is contained in:
Mathias Fredriksson
2025-01-29 16:35:04 +02:00
committed by GitHub
parent 6caa29a29f
commit c069563af1
15 changed files with 39 additions and 39 deletions

View File

@ -2018,7 +2018,7 @@ func TestMultipleOrganizationTemplates(t *testing.T) {
t.Logf("Second organization: %s", second.ID.String())
t.Logf("Third organization: %s", third.ID.String())
t.Logf("Creating template version in second organization")
t.Log("Creating template version in second organization")
start := time.Now()
version := coderdtest.CreateTemplateVersion(t, templateAdmin, second.ID, nil)