Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlemeshko committed Jul 27, 2023
1 parent abb9b64 commit 4647e38
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default function ({ getService }: FtrProviderContext) {
ruleId,
expectedStatus: 'active',
});
expect(executionStatus.status).to.be('active');
expect(executionStatus).to.be('active');
});

it('should set correct information in the alert document', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export default function ({ getService }: FtrProviderContext) {
ruleId,
expectedStatus: 'active',
});
expect(executionStatus.status).to.be('active');
expect(executionStatus).to.be('active');
});

it('should set correct information in the alert document', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export default function ({ getService }: FtrProviderContext) {
ruleId,
expectedStatus: 'active',
});
expect(executionStatus.status).to.be('active');
expect(executionStatus).to.be('active');
});

it('should set correct information in the alert document', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export default function ({ getService }: FtrProviderContext) {
ruleId,
expectedStatus: 'active',
});
expect(executionStatus.status).to.be('active');
expect(executionStatus).to.be('active');
});

it('should set correct information in the alert document', async () => {
Expand Down

0 comments on commit 4647e38

Please sign in to comment.