summaryrefslogtreecommitdiff
path: root/test/utils/podmantest_test.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2019-07-17 15:28:40 -0400
committerMatthew Heon <matthew.heon@pm.me>2019-07-31 17:28:42 -0400
commit318438fcb3ee2ac57498d06fdfd1c5300147a738 (patch)
treea84b06448ab2b190bc4fdf786a32b06800028fbc /test/utils/podmantest_test.go
parentcdd5639d564624a6fbca426421d47c840dac8556 (diff)
downloadpodman-318438fcb3ee2ac57498d06fdfd1c5300147a738.tar.gz
podman-318438fcb3ee2ac57498d06fdfd1c5300147a738.tar.bz2
podman-318438fcb3ee2ac57498d06fdfd1c5300147a738.zip
Do not use an events backend when restoring images
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'test/utils/podmantest_test.go')
-rw-r--r--test/utils/podmantest_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils/podmantest_test.go b/test/utils/podmantest_test.go
index cb31d5548..9620898af 100644
--- a/test/utils/podmantest_test.go
+++ b/test/utils/podmantest_test.go
@@ -23,7 +23,7 @@ var _ = Describe("PodmanTest test", func() {
FakeOutputs["check"] = []string{"check"}
os.Setenv("HOOK_OPTION", "hook_option")
env := os.Environ()
- session := podmanTest.PodmanAsUserBase([]string{"check"}, 1000, 1000, "", env, true)
+ session := podmanTest.PodmanAsUserBase([]string{"check"}, 1000, 1000, "", env, true, false)
os.Unsetenv("HOOK_OPTION")
session.WaitWithDefaultTimeout()
Expect(session.Command.Process).ShouldNot(BeNil())