summaryrefslogtreecommitdiff
path: root/pyuno/qa/pytests/testssl.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyuno/qa/pytests/testssl.py')
-rw-r--r--pyuno/qa/pytests/testssl.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyuno/qa/pytests/testssl.py b/pyuno/qa/pytests/testssl.py
index f0a0a37fc88b..6ec9875fb84f 100644
--- a/pyuno/qa/pytests/testssl.py
+++ b/pyuno/qa/pytests/testssl.py
@@ -1,10 +1,10 @@
import unittest
-#I want to ensure that import ssl works on all platforms
+
+# I want to ensure that import ssl works on all platforms
class SSLTest(unittest.TestCase):
def test_ssl_import(self):
import ssl
if __name__ == '__main__':
unittest.main()
-