diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-02-22 12:55:39 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-22 21:22:39 +0000 |
commit | 8eadc208e15023d9fa92cf08ff03c29ac55bf183 (patch) | |
tree | def82eff864a01acb1e623aa15317006d207c0d5 /libpod/test_common.go | |
parent | 6a4fcb168a47b0419b7a5cef48e3c7d0b42a9438 (diff) | |
download | podman-8eadc208e15023d9fa92cf08ff03c29ac55bf183.tar.gz podman-8eadc208e15023d9fa92cf08ff03c29ac55bf183.tar.bz2 podman-8eadc208e15023d9fa92cf08ff03c29ac55bf183.zip |
Remove No New Privs from DB as it's already in the spec
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #383
Approved by: rhatdan
Diffstat (limited to 'libpod/test_common.go')
-rw-r--r-- | libpod/test_common.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libpod/test_common.go b/libpod/test_common.go index 9e52c74a5..e4a684f87 100644 --- a/libpod/test_common.go +++ b/libpod/test_common.go @@ -106,6 +106,11 @@ func testContainersEqual(t *testing.T, a, b *Container) { assert.NotNil(t, a) assert.NotNil(t, b) + assert.NotNil(t, a.config) + assert.NotNil(t, b.config) + assert.NotNil(t, a.state) + assert.NotNil(t, b.state) + aConfig := new(ContainerConfig) bConfig := new(ContainerConfig) aState := new(containerState) |