Skip to content

Commit

Permalink
Update serverless test
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomThomson committed Oct 13, 2023
1 parent af32e19 commit 99b4879
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await retry.try(async () => {
const toasts = await find.allByCssSelector(toastsSelector);
expect(toasts.length).to.be(2);
const expects = ['The data might be incomplete or wrong.', 'Query result'];
const expects = ['Results are partial and may be incomplete.', 'Query result'];
await asyncForEach(toasts, async (t, index) => {
expect(await t.getVisibleText()).to.eql(expects[index]);
});
Expand Down

0 comments on commit 99b4879

Please sign in to comment.