We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bcb36a commit 0084d61Copy full SHA for 0084d61
pkg/controller/operators/olm/operator_test.go
@@ -3923,9 +3923,10 @@ func TestUpdates(t *testing.T) {
3923
simulateSuccessfulRollout(current, op.opClient)
3924
}
3925
for current.Status.Phase != e.whenIn.phase {
3926
- fmt.Printf("waiting for (when) %s to be %s\n", e.whenIn.name, e.whenIn.phase)
3927
csvsToSync = syncCSVs(csvsToSync, deletedCSVs(e.shouldBe))
3928
current = csvsToSync[e.whenIn.name]
+ fmt.Printf("waiting for (when) %s to be %s\n", e.whenIn.name, e.whenIn.phase)
3929
+ time.Sleep(1 * time.Millisecond)
3930
3931
3932
// sync the other csvs until they're in the expected status
0 commit comments