diff --git a/pyuno/PythonTest_pyuno_pytests_ssl.mk b/pyuno/PythonTest_pyuno_pytests_ssl.mk index 95779dd94915..cdb859fd7869 100644 --- a/pyuno/PythonTest_pyuno_pytests_ssl.mk +++ b/pyuno/PythonTest_pyuno_pytests_ssl.mk @@ -10,7 +10,7 @@ $(eval $(call gb_PythonTest_PythonTest,pyuno_pytests_ssl)) $(eval $(call gb_PythonTest_add_modules,pyuno_pytests_ssl,$(SRCDIR)/pyuno/qa/pytests,\ - ssl \ + testssl \ )) # vim: set noet sw=4 ts=4: diff --git a/pyuno/qa/pytests/ssl.py b/pyuno/qa/pytests/testssl.py similarity index 90% rename from pyuno/qa/pytests/ssl.py rename to pyuno/qa/pytests/testssl.py index f0a0a37fc88b..ed6c99cbd349 100644 --- a/pyuno/qa/pytests/ssl.py +++ b/pyuno/qa/pytests/testssl.py @@ -3,7 +3,7 @@ import unittest #I want to ensure that import ssl works on all platforms class SSLTest(unittest.TestCase): def test_ssl_import(self): - import ssl + import _ssl if __name__ == '__main__': unittest.main()