Skip to content

Commit

Permalink
Corrected error type
Browse files Browse the repository at this point in the history
  • Loading branch information
jholleran committed Aug 15, 2024
1 parent 919bec4 commit 8cc160a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/browser/test/e2e.playwright.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ test("405 problem details error", async ({ page, auth }) => {

await Promise.all([
page.waitForRequest((request) => request.method() === "DELETE"),
page.waitForResponse((response) => response.status() === 406),
page.waitForResponse((response) => response.status() === 405),
page.click("button[data-testid=methodNotAllowed]"),
]);

Expand Down

0 comments on commit 8cc160a

Please sign in to comment.