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/12/31 00:48:04 UTC

svn commit: r1054024 - /incubator/libcloud/trunk/test/test_rackspace.py

Author: jerry
Date: Thu Dec 30 23:48:04 2010
New Revision: 1054024

URL: http://svn.apache.org/viewvc?rev=1054024&view=rev
Log:
Fix the Rackspace tests for namespacing

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

Modified: incubator/libcloud/trunk/test/test_rackspace.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/test/test_rackspace.py?rev=1054024&r1=1054023&r2=1054024&view=diff
==============================================================================
--- incubator/libcloud/trunk/test/test_rackspace.py (original)
+++ incubator/libcloud/trunk/test/test_rackspace.py Thu Dec 30 23:48:04 2010
@@ -18,8 +18,8 @@ import unittest
 from libcloud.types import InvalidCredsError
 from libcloud.drivers.rackspace import (
     RackspaceNodeDriver as Rackspace,
-    SharedIpGroup,
-    NodeIpAddresses)
+    RackspaceSharedIpGroup,
+    RackspaceNodeIpAddresses)
 from libcloud.base import Node, NodeImage, NodeSize
 
 from test import MockHttp, TestCaseMixin