From 3316968266e3a972986e71f0cd6aa5372e045e2d Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Tue, 6 Aug 2019 14:15:42 +0200 Subject: [PATCH] http: only run the get test on linux/macos for now --- vlib/http/http_test.v | 1 + 1 file changed, 1 insertion(+) diff --git a/vlib/http/http_test.v b/vlib/http/http_test.v index 1a76fa773d..338d24ccb1 100644 --- a/vlib/http/http_test.v +++ b/vlib/http/http_test.v @@ -12,6 +12,7 @@ fn test_escape_unescape() { } fn test_http_get() { + $if windows { return } assert http.get_text('https://vlang.io/version') == '0.1.5' println('http ok') }