From c37e03965ab3c2f1250b8b911e443a965c18da82 Mon Sep 17 00:00:00 2001 From: Claudio Procida Date: Mon, 29 Nov 2021 21:21:19 +0100 Subject: [PATCH] Fixes functional test --- .../spaces_only/tests/alerting/aggregate.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/x-pack/test/alerting_api_integration/spaces_only/tests/alerting/aggregate.ts b/x-pack/test/alerting_api_integration/spaces_only/tests/alerting/aggregate.ts index 65aa38cb23c24..106918066f915 100644 --- a/x-pack/test/alerting_api_integration/spaces_only/tests/alerting/aggregate.ts +++ b/x-pack/test/alerting_api_integration/spaces_only/tests/alerting/aggregate.ts @@ -26,6 +26,10 @@ export default function createAggregateTests({ getService }: FtrProviderContext) expect(response.status).to.eql(200); expect(response.body).to.eql({ + rule_enabled_status: { + disabled: 0, + enabled: 0, + }, rule_execution_status: { ok: 0, active: 0, @@ -33,6 +37,10 @@ export default function createAggregateTests({ getService }: FtrProviderContext) pending: 0, unknown: 0, }, + rule_muted_status: { + muted: 0, + unmuted: 0, + }, }); });