From 231623b75b337da654419b0d7bda72025d4203e6 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Thu, 21 Jul 2022 22:04:51 +0300 Subject: [PATCH] ci: vfmt tcp_test.v --- vlib/net/tcp_test.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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() }