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

svn commit: r941858 - /incubator/libcloud/trunk/test/test_linode.py

Author: jerry
Date: Thu May  6 19:01:19 2010
New Revision: 941858

URL: http://svn.apache.org/viewvc?rev=941858&view=rev
Log:
Remove unused assignment in create_node test

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

Modified: incubator/libcloud/trunk/test/test_linode.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/test/test_linode.py?rev=941858&r1=941857&r2=941858&view=diff
==============================================================================
--- incubator/libcloud/trunk/test/test_linode.py (original)
+++ incubator/libcloud/trunk/test/test_linode.py Thu May  6 19:01:19 2010
@@ -54,11 +54,11 @@ class LinodeTest(unittest.TestCase, Test
 
     def test_create_node(self):
         # Will exception on failure
-        node = self.driver.create_node(name="Test",
-                         location=self.driver.list_locations()[0],
-                         size=self.driver.list_sizes()[0],
-                         image=self.driver.list_images()[6],
-                         auth=NodeAuthPassword("test123"))
+        self.driver.create_node(name="Test",
+                                location=self.driver.list_locations()[0],
+                                size=self.driver.list_sizes()[0],
+                                image=self.driver.list_images()[6],
+                                auth=NodeAuthPassword("test123"))
 
     def test_list_sizes(self):
         sizes = self.driver.list_sizes()