fix(api): 🐛 Fix incorrect test case

This commit is contained in:
Jesse Wierzbinski 2024-09-24 17:03:27 +02:00
parent 96d1805925
commit 6d4b4eb13b
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -34,7 +34,7 @@ describe("/api/v1/sso", () => {
expect(response.status).toBe(404);
expect(await response.json()).toMatchObject({
error: "Issuer unknown not found",
error: "Issuer with ID unknown not found in instance's OpenID configuration",
});
});