Skip to content

Commit

Permalink
Merge pull request #78 from FabianKramm/hooks
Browse files Browse the repository at this point in the history
fix: e2e test
  • Loading branch information
FabianKramm committed Feb 2, 2024
2 parents 078fd3b + ba9476c commit 5d0fc94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/plugin/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ var _ = ginkgo.Describe("Plugin test", func() {
// wait for update
gomega.Eventually(func() bool {
err := f.VclusterCRClient.Get(f.Context, types.NamespacedName{Name: "test", Namespace: "test"}, vSecret)
return err == nil && string(vSecret.Data["test"]) == "test"
return err == nil && string(vSecret.Data["test"]) == "newtest"
}).
WithPolling(pollingInterval).
WithTimeout(pollingDurationLong).
Expand Down

0 comments on commit 5d0fc94

Please sign in to comment.