You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by pq...@apache.org on 2010/04/28 01:26:16 UTC

svn commit: r938720 - /incubator/libcloud/trunk/test/__init__.py

Author: pquerna
Date: Tue Apr 27 23:26:15 2010
New Revision: 938720

URL: http://svn.apache.org/viewvc?rev=938720&view=rev
Log:
Fix duplicate function name in test cases.

Submitted by: Eric Woods <woodstae gmail.com>

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

Modified: incubator/libcloud/trunk/test/__init__.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/test/__init__.py?rev=938720&r1=938719&r2=938720&view=diff
==============================================================================
--- incubator/libcloud/trunk/test/__init__.py (original)
+++ incubator/libcloud/trunk/test/__init__.py Tue Apr 27 23:26:15 2010
@@ -175,7 +175,7 @@ class TestCaseMixin(object):
             self.assertTrue(isinstance(image, NodeImage))
 
 
-    def test_list_images_response(self):
+    def test_list_locations_response(self):
         locations = self.driver.list_locations()
         self.assertTrue(isinstance(locations, list))
         for dc in locations: