From c657dc4fdbca4b331d69e0910261e2cb11e2a629 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Tue, 18 Dec 2018 11:44:19 -0500 Subject: Switch all referencs to image.ContainerConfig to image.Config This will more closely match what Docker is doing. Signed-off-by: Daniel J Walsh --- libpod/common_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libpod/common_test.go') diff --git a/libpod/common_test.go b/libpod/common_test.go index 81c8f1920..6c7434fd2 100644 --- a/libpod/common_test.go +++ b/libpod/common_test.go @@ -18,7 +18,7 @@ import ( func getTestContainer(id, name, locksDir string) (*Container, error) { ctr := &Container{ - config: &ContainerConfig{ + config: &Config{ ID: id, Name: name, RootfsImageID: id, @@ -165,8 +165,8 @@ func testContainersEqual(t *testing.T, a, b *Container, allowedEmpty bool) { require.NotNil(t, a.state) require.NotNil(t, b.state) - aConfig := new(ContainerConfig) - bConfig := new(ContainerConfig) + aConfig := new(Config) + bConfig := new(Config) aState := new(containerState) bState := new(containerState) -- cgit v1.2.3-54-g00ecf