Skip to content

Commit 514cd56

Browse files
committed
correct spelling mistake
1 parent 3939f43 commit 514cd56

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/framework/resourcemanager.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ func (rm *ResourceManager) WaitForAppsToBeReady(namespace string) error {
307307
}
308308

309309
// WaitForAppsToBeReadyWithCtx waits for all apps in the specified namespace to be ready or
310-
// until the provided context is cancelled.
310+
// until the provided context is canceled.
311311
func (rm *ResourceManager) WaitForAppsToBeReadyWithCtx(ctx context.Context, namespace string) error {
312312
if err := rm.WaitForPodsToBeReady(ctx, namespace); err != nil {
313313
return err
@@ -325,7 +325,7 @@ func (rm *ResourceManager) WaitForAppsToBeReadyWithCtx(ctx context.Context, name
325325
}
326326

327327
// WaitForPodsToBeReady waits for all Pods in the specified namespace to be ready or
328-
// until the provided context is cancelled.
328+
// until the provided context is canceled.
329329
func (rm *ResourceManager) WaitForPodsToBeReady(ctx context.Context, namespace string) error {
330330
return wait.PollUntilContextCancel(
331331
ctx,
@@ -708,7 +708,7 @@ func (rm *ResourceManager) WaitForAppsToBeReadyWithCtxWithPodCount(ctx context.C
708708
}
709709

710710
// WaitForPodsToBeReady waits for all Pods in the specified namespace to be ready or
711-
// until the provided context is cancelled.
711+
// until the provided context is canceled.
712712
func (rm *ResourceManager) WaitForPodsToBeReadyWithCount(ctx context.Context, namespace string, count int) error {
713713
return wait.PollUntilContextCancel(
714714
ctx,

0 commit comments

Comments
 (0)