aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/client/torture_forward.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/client/torture_forward.c b/tests/client/torture_forward.c
index 377e947d..746199b8 100644
--- a/tests/client/torture_forward.c
+++ b/tests/client/torture_forward.c
@@ -64,12 +64,13 @@ static void torture_ssh_forward(void **state)
int bound_port;
int rc;
- rc = ssh_forward_listen(session, "127.0.0.1", 23424, &bound_port);
+ rc = ssh_forward_listen(session, "127.0.0.1", 8080, &bound_port);
assert_int_equal(rc, SSH_OK);
- c = ssh_forward_accept(session, 50);
- assert_null(c);
+ c = ssh_forward_accept(session, 1000);
+ assert_non_null(c);
+ ssh_channel_send_eof(c);
ssh_channel_close(c);
}