chore: Fix minor typo in a test

Signed-off-by: Adam Harvey <33203301+adamdmharvey@users.noreply.github.com>
This commit is contained in:
Adam Harvey
2024-05-15 23:56:18 -04:00
parent 9478fbb64c
commit d2c36c0896
@@ -77,7 +77,7 @@ describe('FetchUrlReader', () => {
worker.use(
rest.get('https://backstage.io/error', (_req, res, ctx) => {
return res(ctx.status(500), ctx.body('An internal error occured'));
return res(ctx.status(500), ctx.body('An internal error occurred'));
}),
);
});