diff options
author | baude <bbaude@redhat.com> | 2019-08-29 14:07:02 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-08-29 14:08:29 -0500 |
commit | 2fb6cc2ceac680350b403e6173926331d7904722 (patch) | |
tree | d6ae928885837db3570a4b0fe9422a5a34f093b3 /test/endpoint/exists_test.go | |
parent | 4e209fc10a55560ca181207cf43dae0cb0ec9be0 (diff) | |
download | podman-2fb6cc2ceac680350b403e6173926331d7904722.tar.gz podman-2fb6cc2ceac680350b403e6173926331d7904722.tar.bz2 podman-2fb6cc2ceac680350b403e6173926331d7904722.zip |
dont panic when using varlink commit and uppercase image names
when using an upper case image name for container commit, we observed
panics due to a channel closing early.
Fixes: #3897
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'test/endpoint/exists_test.go')
-rw-r--r-- | test/endpoint/exists_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/endpoint/exists_test.go b/test/endpoint/exists_test.go index c8ab9e0f2..17e252a65 100644 --- a/test/endpoint/exists_test.go +++ b/test/endpoint/exists_test.go @@ -8,7 +8,7 @@ import ( . "github.com/onsi/gomega" ) -var _ = Describe("Podman pull", func() { +var _ = Describe("Podman exists", func() { var ( tempdir string err error |