summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <devnull@localhost>2014-09-30 20:25:36 +0300
committerClaudiu Popa <devnull@localhost>2014-09-30 20:25:36 +0300
commit398ea2141c8e0f95c8d90f1181143fa2a1fab788 (patch)
tree06c41d90c36a38903c801c158458144f8fa98c52
parent12729e4f055838bb874d3b04d8fb666b1d87005e (diff)
downloadpylint-398ea2141c8e0f95c8d90f1181143fa2a1fab788.tar.gz
Remove flaky test, especially for PyPy.
-rw-r--r--test/input/func_indexing_exceptions_py_30.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/input/func_indexing_exceptions_py_30.py b/test/input/func_indexing_exceptions_py_30.py
index 95efb6c..460d74a 100644
--- a/test/input/func_indexing_exceptions_py_30.py
+++ b/test/input/func_indexing_exceptions_py_30.py
@@ -3,7 +3,7 @@ Check for indexing exceptions.
"""
# pylint: disable=import-error
__revision__ = 0
-import socket
+
from unknown import ExtensionException
class SubException(IndexError):
@@ -13,4 +13,3 @@ _ = IndexError("test")[0]
_ = ZeroDivisionError("error")[0]
_ = ExtensionException("error")[0]
_ = SubException("error")[1]
-_ = socket.error("socket")[0]