diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-02-10 14:27:04 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-12 14:28:07 +0000 |
commit | 3962d10bd482d1c57707465e8f76e76b4abc9a9f (patch) | |
tree | 223428702f715dee366fd6c5e346e98a4a147869 /libpod/test_common.go | |
parent | a7889f8d6a6d78f91d9d12576398f468195b7abd (diff) | |
download | podman-3962d10bd482d1c57707465e8f76e76b4abc9a9f.tar.gz podman-3962d10bd482d1c57707465e8f76e76b4abc9a9f.tar.bz2 podman-3962d10bd482d1c57707465e8f76e76b4abc9a9f.zip |
Fix gofmt and lint
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #184
Approved by: baude
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) |