fix(meta): return read error in forbidden_words_test (#9706)

When reading a file fails, the error is currently swallowed / hidden.
Probably just a typo.
This commit is contained in:
André Colomb
2024-09-18 19:12:24 +02:00
committed by GitHub
parent 0343bca257
commit 0b95c5fa76

View File

@@ -35,7 +35,7 @@ func TestForbiddenWords(t *testing.T) {
bs, err := os.ReadFile(path)
if err != nil {
return nil
return err
}
for _, word := range forbiddenWords {