Fix status code of unit test

Signed-off-by: Brent Swisher <brent@brentswisher.com>
This commit is contained in:
Brent Swisher
2025-09-08 08:10:02 -04:00
parent b205ea380d
commit c67eb95bd2
@@ -130,7 +130,7 @@ describe('sentry:fetch:dsn action', () => {
http.get(
`https://sentry.io/api/0/projects/${actionContext.input.organizationSlug}/${actionContext.input.projectSlug}/keys/`,
async () => {
return HttpResponse.text('Bad response', { status: 200 });
return HttpResponse.text('Bad response', { status: 400 });
},
),
);