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(") {