Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
timokoessler committed Jan 27, 2025
1 parent b3a658d commit 621a685
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion library/sources/Hono.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ t.test("test access only allowed for some IP addresses", opts, async (t) => {
t.equal(response.statusCode, 403);
t.equal(
response.body,
"our IP address is not allowed to access this resource. (Your IP: 1.3.2.4)"
"Your IP address is not allowed to access this resource. (Your IP: 1.3.2.4)"
);

server.close();
Expand Down
1 change: 1 addition & 0 deletions library/sources/http-server/checkIfRequestIsBlocked.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable max-lines-per-function */
import type { ServerResponse } from "http";
import { Agent } from "../../agent/Agent";
import { getContext } from "../../agent/Context";
Expand Down

0 comments on commit 621a685

Please sign in to comment.