From 722462ae299775a65f5f8204fac7bc47611568db Mon Sep 17 00:00:00 2001 From: data-man Date: Thu, 7 Jun 2018 01:18:08 +0300 Subject: [PATCH] Removed test for live website --- tests/stdlib/thttpclient.nim | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tests/stdlib/thttpclient.nim b/tests/stdlib/thttpclient.nim index c28f091003..fff02722a9 100644 --- a/tests/stdlib/thttpclient.nim +++ b/tests/stdlib/thttpclient.nim @@ -154,20 +154,8 @@ proc ipv6Test() = serverFd.closeSocket() client.close() -proc longTimeoutTest() = -# Issue #2753 - try: - var client = newHttpClient(timeout = 1000) - var resp = client.request("https://au.yahoo.com") - client.close() - except AssertionError: - doAssert false, "Exceptions should not be raised" - except: - discard - syncTest() waitFor(asyncTest()) ipv6Test() -longTimeoutTest() echo "OK"