You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by je...@apache.org on 2010/05/06 21:18:07 UTC

svn commit: r941870 - /incubator/libcloud/trunk/test/test_voxel.py

Author: jerry
Date: Thu May  6 19:18:06 2010
New Revision: 941870

URL: http://svn.apache.org/viewvc?rev=941870&view=rev
Log:
Remove unused return value

Modified:
    incubator/libcloud/trunk/test/test_voxel.py

Modified: incubator/libcloud/trunk/test/test_voxel.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/test/test_voxel.py?rev=941870&r1=941869&r2=941870&view=diff
==============================================================================
--- incubator/libcloud/trunk/test/test_voxel.py (original)
+++ incubator/libcloud/trunk/test/test_voxel.py Thu May  6 19:18:06 2010
@@ -36,7 +36,7 @@ class VoxelTest(unittest.TestCase):
     def test_auth_failed(self):
         VoxelMockHttp.type = 'UNAUTHORIZED'
         try:
-            ret = self.driver.list_nodes()
+            self.driver.list_nodes()
         except Exception, e:
             self.assertTrue(isinstance(e, InvalidCredsException))
         else: