mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-16 15:10:12 +01:00
tests: replace deprecated types with current versions
This commit is contained in:
parent
e0cbe337d7
commit
53c0de5627
1 changed files with 3 additions and 2 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
package container
|
package container
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"github.com/docker/docker/api/types/container"
|
||||||
"github.com/docker/docker/api/types/network"
|
"github.com/docker/docker/api/types/network"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
|
@ -270,7 +271,7 @@ var _ = Describe("the client", func() {
|
||||||
// API.ContainerExecCreate
|
// API.ContainerExecCreate
|
||||||
ghttp.CombineHandlers(
|
ghttp.CombineHandlers(
|
||||||
ghttp.VerifyRequest("POST", HaveSuffix("containers/%v/exec", containerID)),
|
ghttp.VerifyRequest("POST", HaveSuffix("containers/%v/exec", containerID)),
|
||||||
ghttp.VerifyJSONRepresenting(types.ExecConfig{
|
ghttp.VerifyJSONRepresenting(container.ExecOptions{
|
||||||
User: user,
|
User: user,
|
||||||
Detach: false,
|
Detach: false,
|
||||||
Tty: true,
|
Tty: true,
|
||||||
|
|
@ -285,7 +286,7 @@ var _ = Describe("the client", func() {
|
||||||
// API.ContainerExecStart
|
// API.ContainerExecStart
|
||||||
ghttp.CombineHandlers(
|
ghttp.CombineHandlers(
|
||||||
ghttp.VerifyRequest("POST", HaveSuffix("exec/%v/start", execID)),
|
ghttp.VerifyRequest("POST", HaveSuffix("exec/%v/start", execID)),
|
||||||
ghttp.VerifyJSONRepresenting(types.ExecStartCheck{
|
ghttp.VerifyJSONRepresenting(container.ExecStartOptions{
|
||||||
Detach: false,
|
Detach: false,
|
||||||
Tty: true,
|
Tty: true,
|
||||||
}),
|
}),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue