Skip to content

Commit 5a6493c

Browse files
committed
fix print statement missed in earlier commit
Signed-off-by: Callum Styan <callumstyan@gmail.com>
1 parent 3c90c6d commit 5a6493c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coderd/coderdtest/coderdtest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1634,7 +1634,7 @@ func ctxWithProvisionerPermissions(ctx context.Context) context.Context {
16341634
func UpdateProvisionerLastSeenAt(t *testing.T, db database.Store, id uuid.UUID, tickTime time.Time) {
16351635
t.Helper()
16361636
ctx := ctxWithProvisionerPermissions(context.Background())
1637-
t.Logf("Updating provisioner %s LastSeenAt from %v to %v", id, tickTime)
1637+
t.Logf("Updating provisioner %s LastSeenAt to %v", id, tickTime)
16381638
err := db.UpdateProvisionerDaemonLastSeenAt(ctx, database.UpdateProvisionerDaemonLastSeenAtParams{
16391639
ID: id,
16401640
LastSeenAt: sql.NullTime{Time: tickTime, Valid: true},

0 commit comments

Comments
 (0)