Skip to content

Commit

Permalink
Fix for changed failed alert text (#110268)
Browse files Browse the repository at this point in the history
  • Loading branch information
marius-dr authored Aug 26, 2021
1 parent e093d3b commit 18fe8c4
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 18fe8c4

Please sign in to comment.