diff options
Diffstat (limited to 'libpod/test_common.go')
-rw-r--r-- | libpod/test_common.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpod/test_common.go b/libpod/test_common.go index 0d4199037..28053eacb 100644 --- a/libpod/test_common.go +++ b/libpod/test_common.go @@ -78,11 +78,11 @@ func getTestContainer(id, name, locksDir string) (*Container, error) { func getTestPod(id, name, locksDir string) (*Pod, error) { pod := &Pod{ config: &PodConfig{ - ID: id, - Name: name, + ID: id, + Name: name, Labels: map[string]string{"a": "b", "c": "d"}, }, - valid: true, + valid: true, } lockPath := filepath.Join(locksDir, id) |