From 8059c07ebfcf2710424ec5e2115366191a733b77 Mon Sep 17 00:00:00 2001 From: Branden J Brown Date: Thu, 15 Jan 2026 14:17:24 -0500 Subject: [PATCH] horse: remove old comment from test --- horse/skill_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/horse/skill_test.go b/horse/skill_test.go index 3b1163d..b8e0507 100644 --- a/horse/skill_test.go +++ b/horse/skill_test.go @@ -23,8 +23,6 @@ var SortedSkills = sync.OnceValue(func() []horse.Skill { func TestSkillStrings(t *testing.T) { t.Parallel() for _, s := range SortedSkills() { - // We could check that s.ID.String() matches s.Name, - // but that may be awkward for inherited skills. for _, a := range s.Activations { for _, abil := range a.Abilities { if n := abil.Type.String(); strings.HasPrefix(n, "AbilityType(") {