Explorar o código

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 hai 1 ano
pai
achega
0b95c5fa76
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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)
 			if err != nil {
-				return nil
+				return err
 			}
 
 			for _, word := range forbiddenWords {