diff options
Diffstat (limited to '3rdparty/libuv/test/test-tcp-close-while-connecting.c')
-rw-r--r-- | 3rdparty/libuv/test/test-tcp-close-while-connecting.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/libuv/test/test-tcp-close-while-connecting.c b/3rdparty/libuv/test/test-tcp-close-while-connecting.c index 2c39b652b61..60df7a57440 100644 --- a/3rdparty/libuv/test/test-tcp-close-while-connecting.c +++ b/3rdparty/libuv/test/test-tcp-close-while-connecting.c @@ -72,7 +72,7 @@ TEST_IMPL(tcp_close_while_connecting) { RETURN_SKIP("Network unreachable."); ASSERT(r == 0); ASSERT(0 == uv_timer_init(loop, &timer1_handle)); - ASSERT(0 == uv_timer_start(&timer1_handle, timer1_cb, 50, 0)); + ASSERT(0 == uv_timer_start(&timer1_handle, timer1_cb, 1, 0)); ASSERT(0 == uv_timer_init(loop, &timer2_handle)); ASSERT(0 == uv_timer_start(&timer2_handle, timer2_cb, 86400 * 1000, 0)); ASSERT(0 == uv_run(loop, UV_RUN_DEFAULT)); |