diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2019-10-29 16:04:21 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2019-10-29 16:05:42 -0400 |
commit | 0b9e07f7f289da6fda83bcb1660e345cf894a6b6 (patch) | |
tree | 342063f397512a5eb82ad0aebddfc4bcbb6a2933 /test/e2e/exec_test.go | |
parent | 5918f3a5f1d11862fbaaca94ff25f1d9cc1309e2 (diff) | |
download | podman-0b9e07f7f289da6fda83bcb1660e345cf894a6b6.tar.gz podman-0b9e07f7f289da6fda83bcb1660e345cf894a6b6.tar.bz2 podman-0b9e07f7f289da6fda83bcb1660e345cf894a6b6.zip |
Processes execed into container should match container label
Processes execed into a container were not being run with the correct label.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/e2e/exec_test.go')
-rw-r--r-- | test/e2e/exec_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/e2e/exec_test.go b/test/e2e/exec_test.go index 1c4a9adb9..ed4eb3335 100644 --- a/test/e2e/exec_test.go +++ b/test/e2e/exec_test.go @@ -243,4 +243,5 @@ var _ = Describe("Podman exec", func() { session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) }) + }) |