From a4af4f9fe768ac808e9351c5f0c19872202e655c Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Wed, 27 May 2020 15:53:57 +0300 Subject: [PATCH] http_test.v: comment yahoo test urls for now --- vlib/net/http/http_test.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/net/http/http_test.v b/vlib/net/http/http_test.v index 705c8e0a3d..7fdcda554b 100644 --- a/vlib/net/http/http_test.v +++ b/vlib/net/http/http_test.v @@ -24,10 +24,10 @@ fn test_public_servers() { urls := [ 'http://github.com/robots.txt', 'http://google.com/robots.txt', - 'http://yahoo.com/robots.txt', 'https://github.com/robots.txt', 'https://google.com/robots.txt', - 'https://yahoo.com/robots.txt', +// 'http://yahoo.com/robots.txt', +// 'https://yahoo.com/robots.txt', ] for url in urls { println('Testing http.get on public url: $url ')