From f72a678f2a06697ff42e1fe5636cb09b47a25b49 Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Mon, 21 Mar 2022 13:47:59 +0100 Subject: linter: enable errchkjson Signed-off-by: Valentin Rothberg --- test/utils/common_function_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'test/utils/common_function_test.go') diff --git a/test/utils/common_function_test.go b/test/utils/common_function_test.go index 810d9f2a5..144d8d4f1 100644 --- a/test/utils/common_function_test.go +++ b/test/utils/common_function_test.go @@ -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") -- cgit v1.2.3-54-g00ecf