summaryrefslogtreecommitdiff
path: root/test/e2e/restart_test.go
diff options
context:
space:
mode:
authorMatthew Heon <mheon@redhat.com>2018-03-15 16:44:24 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-16 13:55:49 +0000
commit2f533888a5adcbfb57ec22a8086aa5e76acb9071 (patch)
tree4ce6ddf9074ebff4b3eb901019ca3e712f1b8186 /test/e2e/restart_test.go
parentcfdfb751a36d8975d56cebe38be682bd9d3308c8 (diff)
downloadpodman-2f533888a5adcbfb57ec22a8086aa5e76acb9071.tar.gz
podman-2f533888a5adcbfb57ec22a8086aa5e76acb9071.tar.bz2
podman-2f533888a5adcbfb57ec22a8086aa5e76acb9071.zip
Fix E2E tests
Signed-off-by: Matthew Heon <mheon@redhat.com> Closes: #503 Approved by: rhatdan
Diffstat (limited to 'test/e2e/restart_test.go')
-rw-r--r--test/e2e/restart_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/restart_test.go b/test/e2e/restart_test.go
index b624f9c8f..ea03d022f 100644
--- a/test/e2e/restart_test.go
+++ b/test/e2e/restart_test.go
@@ -52,7 +52,7 @@ var _ = Describe("Podman restart", func() {
startSession.WaitWithDefaultTimeout()
Expect(startSession.ExitCode()).To(Equal(0))
- session2 := podmanTest.Podman([]string{"restart", "test1"})
+ session2 := podmanTest.Podman([]string{"restart", cid})
session2.WaitWithDefaultTimeout()
Expect(session2.ExitCode()).To(Equal(0))
})