diff options
-rw-r--r-- | pyuno/qa/pytests/testssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/qa/pytests/testssl.py b/pyuno/qa/pytests/testssl.py index ed6c99cbd349..f0a0a37fc88b 100644 --- a/pyuno/qa/pytests/testssl.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() |