Skip to content
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.

Commit

Permalink
let timeout value bigger
Browse files Browse the repository at this point in the history
Signed-off-by: My-pleasure <dearqwq@qq.com>
  • Loading branch information
My-pleasure committed Jul 23, 2020
1 parent 62ac819 commit 4bd03f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e-test/appconfig_dependency_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ var _ = Describe("Resource Dependency in an ApplicationConfiguration", func() {
func() error {
return k8sClient.Get(ctx, inFooKey, inFoo)
},
time.Second*60, time.Second*5).Should(BeNil())
time.Second*80, time.Second*5).Should(BeNil())
By("Verify the appconfig's dependency is satisfied")
appconfig = &v1alpha2.ApplicationConfiguration{}
logf.Log.Info("Checking on appconfig", "Key", appconfigKey)
Expand All @@ -213,7 +213,7 @@ var _ = Describe("Resource Dependency in an ApplicationConfiguration", func() {
k8sClient.Get(ctx, appconfigKey, appconfig)
return appconfig.Status.Dependency.Unsatisfied
},
time.Second*60, time.Second*5).Should(BeNil())
time.Second*80, time.Second*5).Should(BeNil())
}

It("trait depends on another trait", func() {
Expand Down

0 comments on commit 4bd03f3

Please sign in to comment.