Skip to content

Commit cf6c35c

Browse files
committed
Fixed failing tests
1 parent f806222 commit cf6c35c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

x-pack/test/alerting_api_integration/security_and_spaces/tests/alerting/list_alert_types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ export default function listAlertTypes({ getService }: FtrProviderContext) {
4141
);
4242
expect(fixtureAlertType).to.eql({
4343
actionGroups: [{ id: 'default', name: 'Default' }],
44+
defaultActionGroupId: 'default',
4445
id: 'test.noop',
4546
name: 'Test: Noop',
4647
});

x-pack/test/alerting_api_integration/spaces_only/tests/alerting/list_alert_types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export default function listAlertTypes({ getService }: FtrProviderContext) {
2121
const fixtureAlertType = response.body.find((alertType: any) => alertType.id === 'test.noop');
2222
expect(fixtureAlertType).to.eql({
2323
actionGroups: [{ id: 'default', name: 'Default' }],
24+
defaultActionGroupId: 'default',
2425
id: 'test.noop',
2526
name: 'Test: Noop',
2627
});

0 commit comments

Comments
 (0)