Skip to content

Commit 9f3f4f6

Browse files
committed
fix test
1 parent b3b6388 commit 9f3f4f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/unit/AstClientCreateProxyRequestHandler.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ describe("AstClient - createProxyRequestHandler", () => {
4949
});
5050

5151
it("should use default port 80 when HTTP_PROXY is http without port", () => {
52-
process.env.HTTP_PROXY = "http://31.220.15.234"; // ללא פורט מפורש
52+
process.env.HTTP_PROXY = "http://31.220.15.234";
5353

5454
const client = new AstClient();
5555
const handler = (client as any).createProxyRequestHandler();
@@ -58,7 +58,7 @@ describe("AstClient - createProxyRequestHandler", () => {
5858
});
5959

6060
it("should use default port 443 when HTTP_PROXY is https without port", () => {
61-
process.env.HTTP_PROXY = "https://31.220.15.234"; // ללא פורט מפורש
61+
process.env.HTTP_PROXY = "https://31.220.15.234";
6262

6363
const client = new AstClient();
6464
const handler = (client as any).createProxyRequestHandler();

0 commit comments

Comments
 (0)