diff options
-rw-r--r-- | integration/bunjs-only-snippets/fetch.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/integration/bunjs-only-snippets/fetch.test.js b/integration/bunjs-only-snippets/fetch.test.js index 2f976fd83..018527287 100644 --- a/integration/bunjs-only-snippets/fetch.test.js +++ b/integration/bunjs-only-snippets/fetch.test.js @@ -310,7 +310,7 @@ describe("Response", () => { "content-type": "potato", "x-hello": "world", }, - statusCode: 408, + status: 408, }); expect(response.headers.get("content-type")).toBe( "application/json;charset=utf-8" @@ -341,7 +341,7 @@ describe("Response", () => { "x-hello": "world", Location: "https://wrong.com", }, - statusCode: 408, + status: 408, }); expect(response.headers.get("x-hello")).toBe("world"); expect(response.headers.get("Location")).toBe("https://example.com"); |