summary refs log tree commit diff stats
diff options
context:
space:
mode:
authordata-man <datamanrb@gmail.com>2018-06-07 01:18:08 +0300
committerdata-man <datamanrb@gmail.com>2018-06-07 01:18:08 +0300
commit722462ae299775a65f5f8204fac7bc47611568db (patch)
treed0e3695971509fde9c1a3fdd69b35040cd6dd4f2
parent2a9843c68fc60be6bcb41771dce88df004868e42 (diff)
downloadNim-722462ae299775a65f5f8204fac7bc47611568db.tar.gz
Removed test for live website
-rw-r--r--tests/stdlib/thttpclient.nim12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/stdlib/thttpclient.nim b/tests/stdlib/thttpclient.nim
index c28f09100..fff02722a 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"