linter: enable errchkjson

Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
Valentin Rothberg
2022-03-21 13:47:59 +01:00
parent bb6b69b4ab
commit f72a678f2a
3 changed files with 7 additions and 4 deletions

View File

@ -102,9 +102,10 @@ var _ = Describe("Common functions test", func() {
Item2: []string{"test"},
}
testByte, _ := json.Marshal(testData)
err := WriteJSONFile(testByte, "/tmp/testJSON")
testByte, err := json.Marshal(testData)
Expect(err).To(BeNil(), "Failed to marshal data.")
err = WriteJSONFile(testByte, "/tmp/testJSON")
Expect(err).To(BeNil(), "Failed to write JSON to file.")
read, err := os.Open("/tmp/testJSON")