diff options
author | louis <louis@localhost.localdomain> | 2020-07-20 16:34:59 -0400 |
---|---|---|
committer | ldelossa <ldelossa@redhat.com> | 2020-07-23 10:18:14 -0400 |
commit | 10c4ab11497dd78351674ec7774be65dddea463d (patch) | |
tree | 63bcc4c2137ce586862e70b05c516ba535987e6d /libpod/container_internal_test.go | |
parent | 1aac197f79e91b06ec7e948bd73bb2464e8a508f (diff) | |
download | podman-10c4ab11497dd78351674ec7774be65dddea463d.tar.gz podman-10c4ab11497dd78351674ec7774be65dddea463d.tar.bz2 podman-10c4ab11497dd78351674ec7774be65dddea463d.zip |
Refactor container config
This commit handle the TODO task of breaking the Container
config into smaller sub-configs
Signed-off-by: ldelossa <ldelossa@redhat.com>
Diffstat (limited to 'libpod/container_internal_test.go')
-rw-r--r-- | libpod/container_internal_test.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libpod/container_internal_test.go b/libpod/container_internal_test.go index fdf7c2e20..2b50093b2 100644 --- a/libpod/container_internal_test.go +++ b/libpod/container_internal_test.go @@ -35,7 +35,9 @@ func TestPostDeleteHooks(t *testing.T) { "a": "b", }, }, - StaticDir: dir, // not the bundle, but good enough for this test + ContainerRootFSConfig: ContainerRootFSConfig{ + StaticDir: dir, // not the bundle, but good enough for this test + }, }, state: &ContainerState{ ExtensionStageHooks: map[string][]rspec.Hook{ |