Skip to content

Commit

Permalink
Fix for changed failed alert text (#110268) (#110344)
Browse files Browse the repository at this point in the history
Co-authored-by: Marius Dragomir <marius-dr@users.noreply.github.com>
  • Loading branch information
kibanamachine and marius-dr authored Aug 26, 2021
1 parent 9dda364 commit fa310c2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ export default ({ getPageObjects, getService }) => {
await testConnector(connectorName);
await retry.try(async () => {
const executionFailureResultCallout = await testSubjects.find('executionFailureResult');
expect(await executionFailureResultCallout.getVisibleText()).to.match(
/Internal Server Error/
expect(await executionFailureResultCallout.getVisibleText()).to.be(
'Test failed to run\nThe following error was found:\nerror sending email\nDetails:\nMail command failed: 550 5.7.1 Relaying denied'
);
});
expect(true).to.be(true);
Expand Down

0 comments on commit fa310c2

Please sign in to comment.