diff --git a/thirdparty/cli-utils/apply/applier_test.go b/thirdparty/cli-utils/apply/applier_test.go index b55adae7ec..302f5bd305 100644 --- a/thirdparty/cli-utils/apply/applier_test.go +++ b/thirdparty/cli-utils/apply/applier_test.go @@ -809,38 +809,8 @@ func TestApplier(t *testing.T) { InventoryPolicy: inventory.PolicyMustMatch, EmitStatusEvents: true, }, - statusEvents: []pollevent.Event{ - { - Type: pollevent.ResourceUpdateEvent, - Resource: &pollevent.ResourceStatus{ - Identifier: testutil.ToIdentifier(t, resources["deployment"]), - Status: status.InProgressStatus, - }, - }, - { - Type: pollevent.ResourceUpdateEvent, - Resource: &pollevent.ResourceStatus{ - Identifier: testutil.ToIdentifier(t, resources["deployment"]), - Status: status.CurrentStatus, - }, - }, - }, - expectedStatusEvents: []testutil.ExpEvent{ - { - EventType: event.StatusType, - StatusEvent: &testutil.ExpStatusEvent{ - Identifier: testutil.ToIdentifier(t, resources["deployment"]), - Status: status.InProgressStatus, - }, - }, - { - EventType: event.StatusType, - StatusEvent: &testutil.ExpStatusEvent{ - Identifier: testutil.ToIdentifier(t, resources["deployment"]), - Status: status.CurrentStatus, - }, - }, - }, + statusEvents: []pollevent.Event{}, + expectedStatusEvents: []testutil.ExpEvent{}, expectedEvents: []testutil.ExpEvent{ { EventType: event.InitType, @@ -1933,7 +1903,7 @@ func TestApplierCancel(t *testing.T) { var removed int receivedEvents, removed = testutil.RemoveEqualEvents(receivedEvents, e) if removed < 1 { - t.Fatalf("Expected status event not received: %#v", e.StatusEvent) + t.Errorf("Expected status event not received: %#v", e.StatusEvent) } }