diff options
Diffstat (limited to 'test/e2e/libpod_suite_test.go')
-rw-r--r-- | test/e2e/libpod_suite_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/libpod_suite_test.go b/test/e2e/libpod_suite_test.go index 7007c5075..0c3dd2eea 100644 --- a/test/e2e/libpod_suite_test.go +++ b/test/e2e/libpod_suite_test.go @@ -567,8 +567,8 @@ func (p *PodmanTest) GetHostDistribution() string { return "" } for _, line := range content { - if strings.HasPrefix(fmt.Sprintf("%s", line), "ID") { - fields := strings.Split(fmt.Sprintf("%s", line), "=") + if strings.HasPrefix(fmt.Sprintf("%x", line), "ID") { + fields := strings.Split(fmt.Sprintf("%x", line), "=") if len(fields) < 2 { return "" } |