diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-07-17 15:28:40 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-07-31 17:28:42 -0400 |
commit | 318438fcb3ee2ac57498d06fdfd1c5300147a738 (patch) | |
tree | a84b06448ab2b190bc4fdf786a32b06800028fbc /test/utils/podmantest_test.go | |
parent | cdd5639d564624a6fbca426421d47c840dac8556 (diff) | |
download | podman-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.go | 2 |
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()) |