Skip to content

Commit 57bd873

Browse files
committed
Capitalize all letters that go into msgPrefix for the other to integrations to match the run task integration msgPrefix
1 parent fc854ee commit 57bd873

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/cloud/backend_common.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ func (b *Cloud) costEstimate(stopCtx, cancelCtx context.Context, op *backend.Ope
213213
return nil
214214
}
215215

216-
msgPrefix := "Cost estimation"
216+
msgPrefix := "Cost Estimation"
217217
started := time.Now()
218218
updated := started
219219
for i := 0; ; i++ {
@@ -334,9 +334,9 @@ func (b *Cloud) checkPolicy(stopCtx, cancelCtx context.Context, op *backend.Oper
334334
var msgPrefix string
335335
switch pc.Scope {
336336
case tfe.PolicyScopeOrganization:
337-
msgPrefix = "Organization policy check"
337+
msgPrefix = "Organization Policy Check"
338338
case tfe.PolicyScopeWorkspace:
339-
msgPrefix = "Workspace policy check"
339+
msgPrefix = "Workspace Policy Check"
340340
default:
341341
msgPrefix = fmt.Sprintf("Unknown policy check (%s)", pc.Scope)
342342
}

0 commit comments

Comments
 (0)