diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-23 11:43:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-24 14:12:39 +0100 |
commit | 6e24cf09c5f73a6496320a42fb070e78f1527357 (patch) | |
tree | d302ea550389a8ec48d88523b098421d30a114bd /pyuno | |
parent | 4996fad625fa703775f2c8d5c9c188882f5d2018 (diff) |
test for _ssl
I'm still suspicious
Change-Id: I56bfbe1ea2f92ffba6264b7543fa5df7f29f2bd0
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/PythonTest_pyuno_pytests_ssl.mk | 2 | ||||
-rw-r--r-- | pyuno/qa/pytests/testssl.py (renamed from pyuno/qa/pytests/ssl.py) | 2 |
2 files changed, 2 insertions, 2 deletions
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 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() |