Skip to content

Commit a04abd3

Browse files
committed
fix(tests): remove unnecessary whitespace in HTTP method validation tests
1 parent d32dd15 commit a04abd3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/http-method-validation.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ describe("HTTP Method Validation Security Tests", () => {
8383
status: 200,
8484
statusText: "OK",
8585
headers: new Headers({ "content-type": "text/plain" }),
86-
})
86+
}),
8787
)
8888
})
8989

@@ -117,7 +117,7 @@ describe("HTTP Method Validation Security Tests", () => {
117117
// The normalized request should work fine
118118
const response = await proxy.proxy(request)
119119
expect(response.status).toBe(200)
120-
120+
121121
// Verify fetch was called
122122
expect(fetchSpy).toHaveBeenCalledTimes(1)
123123
})
@@ -129,7 +129,7 @@ describe("HTTP Method Validation Security Tests", () => {
129129

130130
const response = await proxy.proxy(request)
131131
expect(response.status).toBe(200)
132-
132+
133133
// Verify fetch was called
134134
expect(fetchSpy).toHaveBeenCalledTimes(1)
135135
})

0 commit comments

Comments
 (0)