diff options
Diffstat (limited to 'test/utils/common_function_test.go')
-rw-r--r-- | test/utils/common_function_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
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") |