1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: vfmt tcp_test.v

This commit is contained in:
Delyan Angelov 2022-07-21 22:04:51 +03:00
parent dc1b54c669
commit 231623b75b
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -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()
}