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:49:01 UTC

svn commit: r1201154 - in /libcloud/trunk/test: compute/test_cloudstack.py dns/test_rackspace.py

Author: tomaz
Date: Sat Nov 12 01:49:01 2011
New Revision: 1201154

URL: http://svn.apache.org/viewvc?rev=1201154&view=rev
Log:
Set poll_interval to 0.0 in the tests.

Modified:
    libcloud/trunk/test/compute/test_cloudstack.py
    libcloud/trunk/test/dns/test_rackspace.py

Modified: libcloud/trunk/test/compute/test_cloudstack.py
URL: http://svn.apache.org/viewvc/libcloud/trunk/test/compute/test_cloudstack.py?rev=1201154&r1=1201153&r2=1201154&view=diff
==============================================================================
--- libcloud/trunk/test/compute/test_cloudstack.py (original)
+++ libcloud/trunk/test/compute/test_cloudstack.py Sat Nov 12 01:49:01 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/trunk/test/dns/test_rackspace.py
URL: http://svn.apache.org/viewvc/libcloud/trunk/test/dns/test_rackspace.py?rev=1201154&r1=1201153&r2=1201154&view=diff
==============================================================================
--- libcloud/trunk/test/dns/test_rackspace.py (original)
+++ libcloud/trunk/test/dns/test_rackspace.py Sat Nov 12 01:49:01 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()