Skip to content

Commit

Permalink
Fixed test assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
ellistarn committed Nov 27, 2021
1 parent 5d55d36 commit 06441b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/test/expectations/expectations.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ func ExpectProvisioned(ctx context.Context, c client.Client, scheduler *scheduli
for _, pod := range pods {
wg.Add(1)
go func(pod *v1.Pod) {
ExpectReconcileSucceeded(ctx, scheduler, client.ObjectKeyFromObject(pod))
scheduler.Reconcile(ctx, reconcile.Request{NamespacedName: client.ObjectKeyFromObject(pod)})
wg.Done()
}(pod)
}
Expand Down

0 comments on commit 06441b3

Please sign in to comment.