mirror of
https://github.com/containrrr/watchtower.git
synced 2025-09-21 21:30:48 +02:00
fix broken tests
This commit is contained in:
parent
a6949dede9
commit
a42eb28f39
2 changed files with 6 additions and 5 deletions
|
@ -308,7 +308,7 @@ var _ = Describe("the client", func() {
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
err := client.ExecuteCommand(containerID, cmd, 1)
|
err := client.ExecuteCommand(containerID, cmd, time.Minute)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
// Note: Since Execute requires opening up a raw TCP stream to the daemon for the output, this will fail
|
// Note: Since Execute requires opening up a raw TCP stream to the daemon for the output, this will fail
|
||||||
// when using the mock API server. Regardless of the outcome, the log should include the container ID
|
// when using the mock API server. Regardless of the outcome, the log should include the container ID
|
||||||
|
|
|
@ -6,6 +6,7 @@ import (
|
||||||
"github.com/docker/go-connections/nat"
|
"github.com/docker/go-connections/nat"
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
var _ = Describe("the container", func() {
|
var _ = Describe("the container", func() {
|
||||||
|
@ -380,10 +381,10 @@ var _ = Describe("the container", func() {
|
||||||
"com.centurylinklabs.watchtower.lifecycle.pre-update-timeout": "3",
|
"com.centurylinklabs.watchtower.lifecycle.pre-update-timeout": "3",
|
||||||
"com.centurylinklabs.watchtower.lifecycle.post-update-timeout": "5",
|
"com.centurylinklabs.watchtower.lifecycle.post-update-timeout": "5",
|
||||||
}))
|
}))
|
||||||
preTimeout := c.PreUpdateTimeout()
|
preTimeout := c.GetLifecycleTimeout(types.PreUpdate)
|
||||||
Expect(preTimeout).To(Equal(3))
|
Expect(preTimeout).To(Equal(3 * time.Minute))
|
||||||
postTimeout := c.PostUpdateTimeout()
|
postTimeout := c.GetLifecycleTimeout(types.PostUpdate)
|
||||||
Expect(postTimeout).To(Equal(5))
|
Expect(postTimeout).To(Equal(5 * time.Minute))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue