Skip to content

Commit

Permalink
update integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed Feb 17, 2022
1 parent 82b8f7f commit d9286ca
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ export default function ({ getService }: FtrProviderContext) {
// Retry the download URL until a "failed" response status is returned
await retry.tryForTime(120000, async () => {
const { body } = await supertest.get(downloadPath).expect(500);
expect(body.message).to.match(/Reporting generation failed: Error:/);
expect(body.message).to.match(
/Reporting generation failed: ReportingError\(code: unknown_error\) "/
);
});
});
});
Expand Down

0 comments on commit d9286ca

Please sign in to comment.