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/utils_suite_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/utils_suite_test.go')
-rw-r--r-- | test/utils/utils_suite_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils/utils_suite_test.go b/test/utils/utils_suite_test.go index b1100892b..5904d37dc 100644 --- a/test/utils/utils_suite_test.go +++ b/test/utils/utils_suite_test.go @@ -32,7 +32,7 @@ func FakePodmanTestCreate() *FakePodmanTest { return p } -func (p *FakePodmanTest) makeOptions(args []string) []string { +func (p *FakePodmanTest) makeOptions(args []string, noEvents bool) []string { return FakeOutputs[strings.Join(args, " ")] } |