diff --git a/vlib/net/tcp_test.v b/vlib/net/tcp_test.v index 5082497d14..955151ded7 100644 --- a/vlib/net/tcp_test.v +++ b/vlib/net/tcp_test.v @@ -102,9 +102,9 @@ fn testsuite_end() { } fn test_bind() { - $if !network ? { - return - } + $if !network ? { + return + } conn := net.dial_tcp_with_bind('vlang.io:80', '127.0.0.1:0') conn.close() }