Skip to content

Commit

Permalink
Fixed failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
YulNaumenko committed Feb 21, 2020
1 parent f806222 commit cf6c35c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export default function listAlertTypes({ getService }: FtrProviderContext) {
);
expect(fixtureAlertType).to.eql({
actionGroups: [{ id: 'default', name: 'Default' }],
defaultActionGroupId: 'default',
id: 'test.noop',
name: 'Test: Noop',
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export default function listAlertTypes({ getService }: FtrProviderContext) {
const fixtureAlertType = response.body.find((alertType: any) => alertType.id === 'test.noop');
expect(fixtureAlertType).to.eql({
actionGroups: [{ id: 'default', name: 'Default' }],
defaultActionGroupId: 'default',
id: 'test.noop',
name: 'Test: Noop',
});
Expand Down

0 comments on commit cf6c35c

Please sign in to comment.