Refactor and fix tagger test

This commit is contained in:
2025-06-06 16:41:48 +02:00
parent 87c93e90cd
commit 0373010497
3 changed files with 5 additions and 5 deletions

View File

@@ -35,8 +35,8 @@ func TestRegister(t *testing.T) {
err := tagger.Register()
noErr(t, err)
if len(tagger.apps) != 4 {
t.Errorf("wrong summary for diagnostic \ngot: %d \nwant: 3", len(tagger.apps))
if len(tagger.apps) != 14 {
t.Errorf("wrong summary for diagnostic \ngot: %d \nwant: 14", len(tagger.apps))
}
}