summaryrefslogtreecommitdiff
path: root/pyuno/qa/pytests/testssl.py
diff options
context:
space:
mode:
authorKenneth Koski <mechaxl@gmail.com>2016-02-19 19:55:31 -0600
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2016-02-23 08:14:18 +0000
commit4f6e3108d9b9b67f21d11d597f2e607acafabd72 (patch)
tree9318e40b5e1b3a55540efd50ca1db6925433f013 /pyuno/qa/pytests/testssl.py
parent799eab3b3499be5846e13e6360cc01741a241f89 (diff)
Running pep8 on pyuno unit test files
Change-Id: I5d35305386e1f520d1030776e2b7bcf7620eda04 Reviewed-on: https://gerrit.libreoffice.org/22514 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
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()
-