Add periods to end of license warning text. (#3933)

* Add periods to end of license warning text.

Signed-off-by: Spike Curtis <spike@coder.com>

* Fix tests

Signed-off-by: Spike Curtis <spike@coder.com>

Signed-off-by: Spike Curtis <spike@coder.com>
This commit is contained in:
Spike Curtis 2022-09-07 10:27:42 -07:00 committed by GitHub
parent d46b04cb1e
commit ac279b3483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -112,7 +112,7 @@ func (s *featuresService) EntitlementsAPI(rw http.ResponseWriter, r *http.Reques
if n > e.activeUsers.limit {
resp.Warnings = append(resp.Warnings,
fmt.Sprintf(
"Your deployment has %d active users but is only licensed for %d",
"Your deployment has %d active users but is only licensed for %d.",
n, e.activeUsers.limit))
}
}
@ -125,7 +125,7 @@ func (s *featuresService) EntitlementsAPI(rw http.ResponseWriter, r *http.Reques
}
if e.auditLogs.state == gracePeriod && s.enablements.AuditLogs {
resp.Warnings = append(resp.Warnings,
"Audit logging is enabled but your license for this feature is expired")
"Audit logging is enabled but your license for this feature is expired.")
}
httpapi.Write(rw, http.StatusOK, resp)

View File

@ -165,9 +165,9 @@ func TestFeaturesService_EntitlementsAPI(t *testing.T) {
assert.Nil(t, al.Actual)
assert.Len(t, result.Warnings, 2)
assert.Contains(t, result.Warnings,
"Your deployment has 5 active users but is only licensed for 4")
"Your deployment has 5 active users but is only licensed for 4.")
assert.Contains(t, result.Warnings,
"Audit logging is enabled but your license for this feature is expired")
"Audit logging is enabled but your license for this feature is expired.")
})
}