summaryrefslogtreecommitdiff
path: root/tests/modules/socket/tcp/echo_client.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/modules/socket/tcp/echo_client.lua')
-rw-r--r--tests/modules/socket/tcp/echo_client.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modules/socket/tcp/echo_client.lua b/tests/modules/socket/tcp/echo_client.lua
index 6c7d67068..55613cd10 100644
--- a/tests/modules/socket/tcp/echo_client.lua
+++ b/tests/modules/socket/tcp/echo_client.lua
@@ -2,7 +2,7 @@ import("core.base.socket")
function main()
local addr = "127.0.0.1"
- local port = 9001
+ local port = 9091
print("connect %s:%d ..", addr, port)
local sock = socket.connect(addr, port)
if sock then