diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-02-20 17:22:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-20 17:22:12 -0500 |
commit | a7a52fdf2be9ecc1176339bdf9c16474aef678d8 (patch) | |
tree | fc0679e6470c4a2a4407002ee9c90766a3a9983e /pkg/bindings/test/images_test.go | |
parent | 83a9b318e150e96ba381f2fdf0db9d979e0740f0 (diff) | |
parent | 0f0b4fd3c2fc448bdc46169dbb9656c32bb53ebb (diff) | |
download | podman-a7a52fdf2be9ecc1176339bdf9c16474aef678d8.tar.gz podman-a7a52fdf2be9ecc1176339bdf9c16474aef678d8.tar.bz2 podman-a7a52fdf2be9ecc1176339bdf9c16474aef678d8.zip |
Merge pull request #5273 from jwhonce/wip/ssh_dialer
Add support for ssh:// and unix:// podman clients
Diffstat (limited to 'pkg/bindings/test/images_test.go')
-rw-r--r-- | pkg/bindings/test/images_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/bindings/test/images_test.go b/pkg/bindings/test/images_test.go index 483b6b42d..0b51c8c9e 100644 --- a/pkg/bindings/test/images_test.go +++ b/pkg/bindings/test/images_test.go @@ -38,7 +38,7 @@ var _ = Describe("Podman images", func() { bt.RestoreImagesFromCache() s = bt.startAPIService() time.Sleep(1 * time.Second) - connText, err = bindings.NewConnection(bt.sock) + connText, err = bindings.NewConnection(context.Background(), bt.sock) Expect(err).To(BeNil()) }) |