You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by an...@apache.org on 2017/01/10 04:03:29 UTC

[4/5] libcloud git commit: fix openstack test not having explicit secure param

fix openstack test not having explicit secure param


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/e5d2cfdf
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/e5d2cfdf
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/e5d2cfdf

Branch: refs/heads/trunk
Commit: e5d2cfdfa86c82acab73951b485dc55351877976
Parents: 72f1e19
Author: Anthony Shaw <an...@apache.org>
Authored: Tue Jan 10 13:45:13 2017 +1100
Committer: Anthony Shaw <an...@apache.org>
Committed: Tue Jan 10 13:45:13 2017 +1100

----------------------------------------------------------------------
 libcloud/test/common/test_openstack.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/e5d2cfdf/libcloud/test/common/test_openstack.py
----------------------------------------------------------------------
diff --git a/libcloud/test/common/test_openstack.py b/libcloud/test/common/test_openstack.py
index adef17e..290ed3e 100644
--- a/libcloud/test/common/test_openstack.py
+++ b/libcloud/test/common/test_openstack.py
@@ -40,8 +40,9 @@ class OpenStackBaseConnectionTest(unittest.TestCase):
                                                                port=443)
         else:
             self.connection.conn_class.assert_called_with(host='127.0.0.1',
-                                                               port=443,
-                                                               timeout=10)
+                                                          secure=1,
+                                                          port=443,
+                                                          timeout=10)
 
 
 if __name__ == '__main__':