summaryrefslogtreecommitdiff
path: root/python/test/Ice/asyncio/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/test/Ice/asyncio/test.py')
-rw-r--r--python/test/Ice/asyncio/test.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/python/test/Ice/asyncio/test.py b/python/test/Ice/asyncio/test.py
index 40ed163c546..5e4ba559841 100644
--- a/python/test/Ice/asyncio/test.py
+++ b/python/test/Ice/asyncio/test.py
@@ -3,8 +3,7 @@
# Copyright (c) ZeroC, Inc. All rights reserved.
#
-# This test doesn't support running with IceSSL, the Router object in the client process uses
-# the client certificate and fails with "unsupported certificate purpose"
+# This test requires asyncio methods which are only available with Python 3.7
-if sys.version_info >= (3, 5):
+if sys.version_info >= (3, 7):
TestSuite(__name__)