fix(health): reword sources_xml_diff title to an expectation (refs #493)

The check title asserted "Speaker /sources matches service Sources.xml",
but the row renders as a warning when they differ, so "matches" plus a
warning read as a contradiction (reported in #493). Reword to "should
match" so the title states the expectation; the per-finding messages and
severities already convey whether it holds and what the differences are.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Tobias Gesellchen
2026-06-28 12:10:25 +02:00
co-authored by Claude Opus 4.8
parent 1fff2c07a9
commit a033ec077f
+1 -1
View File
@@ -41,7 +41,7 @@ type speakerSourcesXML struct {
func RegisterSourcesXMLDiff(r *Registry, ds *datastore.DataStore) {
r.Register(Check{
ID: CheckIDSourcesXMLDiff,
Title: "Speaker /sources matches service Sources.xml",
Title: "Speaker /sources should match service Sources.xml",
Run: func() []Finding {
return runSourcesXMLDiff(ds)
},