diff --git a/enterprise/coderd/features.go b/enterprise/coderd/features.go index 511e3eb05cdc9..a851812594827 100644 --- a/enterprise/coderd/features.go +++ b/enterprise/coderd/features.go @@ -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) diff --git a/enterprise/coderd/features_internal_test.go b/enterprise/coderd/features_internal_test.go index da5bb39176bd1..629e427d2749a 100644 --- a/enterprise/coderd/features_internal_test.go +++ b/enterprise/coderd/features_internal_test.go @@ -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.") }) }