diff --git a/test/e2e/libpod_suite_test.go b/test/e2e/libpod_suite_test.go index 0c3dd2eea4..796bf21996 100644 --- a/test/e2e/libpod_suite_test.go +++ b/test/e2e/libpod_suite_test.go @@ -629,6 +629,14 @@ func IsCommandAvailable(command string) bool { return true } +// WriteJsonFile write json format data to a json file +func WriteJsonFile(data []byte, filePath string) error { + var jsonData map[string]interface{} + json.Unmarshal(data, &jsonData) + formatJson, _ := json.MarshalIndent(jsonData, "", " ") + return ioutil.WriteFile(filePath, formatJson, 0644) +} + func getTestContext() context.Context { return context.Background() }