Explorar el 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 hace 1 año
padre
commit
0b95c5fa76
Se han modificado 1 ficheros con 1 adiciones y 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 {