Skip to content

Commit 4d097a7

Browse files
style: fix code format
1 parent df469f4 commit 4d097a7

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

packages/node-http-handler/src/node-http-handler.spec.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,12 @@ describe("NodeHttpHandler", () => {
252252

253253
it.each([
254254
["existing handler instance", new NodeHttpHandler()],
255-
["custom HttpHandler object", {
256-
handle: vi.fn(),
257-
} as any],
255+
[
256+
"custom HttpHandler object",
257+
{
258+
handle: vi.fn(),
259+
} as any,
260+
],
258261
])("returns the input handler when passed %s", (_, handler) => {
259262
const result = NodeHttpHandler.create(handler);
260263
expect(result).toBe(handler);

0 commit comments

Comments
 (0)