Skip to content

Commit

Permalink
Merge pull request #1091 from Fedosin/machineset_test_timeout
Browse files Browse the repository at this point in the history
Increase timeout for machineset tests
  • Loading branch information
openshift-merge-robot committed Nov 29, 2022
2 parents d7ba496 + dfe775b commit 0b6b598
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/controller/machineset/machineset_controller_test.go
Expand Up @@ -18,6 +18,7 @@ package machineset

import (
"context"
"time"

. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
Expand Down Expand Up @@ -71,7 +72,7 @@ var _ = Describe("MachineSet Reconciler", func() {

By("Closing the manager")
mgrCtxCancel()
Eventually(mgrStopped, timeout).Should(BeClosed())
Eventually(mgrStopped, timeout).WithTimeout(20 * time.Second).Should(BeClosed())
})

It("Should reconcile a MachineSet", func() {
Expand Down

0 comments on commit 0b6b598

Please sign in to comment.