Skip to content

Commit

Permalink
Merge pull request #1634 from zimnx/mz/fix-framework-ns-await
Browse files Browse the repository at this point in the history
Fix default ServiceAccount awaiting in E2E framework
  • Loading branch information
scylla-operator-bot[bot] authored Dec 13, 2023
2 parents 7640631 + 80d8d86 commit f550d4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/framework/framework.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ func (f *Framework) setupNamespace(ctx context.Context) {
By("Waiting for default ServiceAccount in namespace %q.", ns.Name)
ctxSa, ctxSaCancel := context.WithTimeout(ctx, serviceAccountWaitTimeout)
defer ctxSaCancel()
_, err = WaitForServiceAccount(ctxSa, f.KubeAdminClient().CoreV1(), ns.Namespace, "default")
_, err = WaitForServiceAccount(ctxSa, f.KubeAdminClient().CoreV1(), ns.Name, "default")
o.Expect(err).NotTo(o.HaveOccurred())
}

Expand Down

0 comments on commit f550d4a

Please sign in to comment.