You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2011/11/12 02:54:57 UTC

svn commit: r1201159 - in /libcloud/branches/0.6.x: ./ test/compute/test_cloudstack.py test/dns/test_rackspace.py

Author: tomaz
Date: Sat Nov 12 01:54:57 2011
New Revision: 1201159

URL: http://svn.apache.org/viewvc?rev=1201159&view=rev
Log:
Set poll_interval to 0.0 in the tests (back-port from trunk).

Modified:
    libcloud/branches/0.6.x/   (props changed)
    libcloud/branches/0.6.x/test/compute/test_cloudstack.py
    libcloud/branches/0.6.x/test/dns/test_rackspace.py

Propchange: libcloud/branches/0.6.x/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sat Nov 12 01:54:57 2011
@@ -1 +1 @@
-/libcloud/trunk:1201138,1201141,1201152-1201153
+/libcloud/trunk:1201138,1201141,1201152-1201154

Modified: libcloud/branches/0.6.x/test/compute/test_cloudstack.py
URL: http://svn.apache.org/viewvc/libcloud/branches/0.6.x/test/compute/test_cloudstack.py?rev=1201159&r1=1201158&r2=1201159&view=diff
==============================================================================
--- libcloud/branches/0.6.x/test/compute/test_cloudstack.py (original)
+++ libcloud/branches/0.6.x/test/compute/test_cloudstack.py Sat Nov 12 01:54:57 2011
@@ -29,6 +29,7 @@ class CloudStackNodeDriverTest(unittest.
         self.driver.path = '/test/path'
         self.driver.type = -1
         CloudStackMockHttp.fixture_tag = 'default'
+        self.driver.connection.poll_interval = 0.0
 
     def test_create_node_immediate_failure(self):
         size = self.driver.list_sizes()[0]

Modified: libcloud/branches/0.6.x/test/dns/test_rackspace.py
URL: http://svn.apache.org/viewvc/libcloud/branches/0.6.x/test/dns/test_rackspace.py?rev=1201159&r1=1201158&r2=1201159&view=diff
==============================================================================
--- libcloud/branches/0.6.x/test/dns/test_rackspace.py (original)
+++ libcloud/branches/0.6.x/test/dns/test_rackspace.py Sat Nov 12 01:54:57 2011
@@ -35,6 +35,7 @@ class RackspaceUSTests(unittest.TestCase
                 None, RackspaceMockHttp)
         RackspaceMockHttp.type = None
         self.driver = self.klass(*DNS_PARAMS_RACKSPACE)
+        self.driver.connection.poll_interval = 0.0
 
     def test_list_record_types(self):
         record_types = self.driver.list_record_types()