diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-07-27 16:35:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-27 16:35:20 +0200 |
commit | 5e9b54f9543f5160592578e6e8aa9d4ed6bbf3e8 (patch) | |
tree | 649427c709cc9d3181e0de78367461796a40b7ee /libpod/container_internal_test.go | |
parent | 55a7faf2b8f09034064029887cc85811a7dae582 (diff) | |
parent | 10c4ab11497dd78351674ec7774be65dddea463d (diff) | |
download | podman-5e9b54f9543f5160592578e6e8aa9d4ed6bbf3e8.tar.gz podman-5e9b54f9543f5160592578e6e8aa9d4ed6bbf3e8.tar.bz2 podman-5e9b54f9543f5160592578e6e8aa9d4ed6bbf3e8.zip |
Merge pull request #7027 from ldelossa/louis/refactor-container-config
TODO: Refactor container config
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{ |