Browse Source

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.
André Colomb 1 year ago
parent
commit
0b95c5fa76
1 changed files with 1 additions and 1 deletions
  1. 1 1
      meta/forbidden_words_test.go

+ 1 - 1
meta/forbidden_words_test.go

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